diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-15 22:56:06 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-15 22:56:06 +0200 |
commit | 319abf4fd04df049997dacf9ee02bee1eac5d193 (patch) | |
tree | adb1afca2b0e46950102aa106b27c64be68e1ba1 /tests/scripts/python/testapigen.py | |
parent | 7a544d5fcfd17536376252963172ea2341236709 (diff) | |
download | weechat-319abf4fd04df049997dacf9ee02bee1eac5d193.zip |
python: remove support of Python 2.x
Diffstat (limited to 'tests/scripts/python/testapigen.py')
-rwxr-xr-x | tests/scripts/python/testapigen.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/scripts/python/testapigen.py b/tests/scripts/python/testapigen.py index 43fca9ee0..051a5b808 100755 --- a/tests/scripts/python/testapigen.py +++ b/tests/scripts/python/testapigen.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Copyright (C) 2017-2022 Sébastien Helleu <flashcode@flashtux.org> @@ -41,10 +41,7 @@ import argparse import ast from datetime import datetime import inspect -try: - from StringIO import StringIO # python 2 -except ImportError: - from io import StringIO # python 3 +from io import StringIO import os import sys import traceback |