summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2023-01-07 08:41:18 -0800
committerEli Bendersky <eliben@gmail.com>2023-01-07 08:41:18 -0800
commit85a40529d4fda2e4eb59c9bd619aabe2f55851e3 (patch)
tree8c1150b73ee1f179539c1db32563caff0a693911 /tests
parentaa325fd47f8c4115e396f5e79d0442666a89b457 (diff)
downloadpycparser-85a40529d4fda2e4eb59c9bd619aabe2f55851e3.tar.gz
More removal of code specific for Python 2
Diffstat (limited to 'tests')
-rw-r--r--tests/test_util.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index a945c29..56835a0 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -34,10 +34,7 @@ def cpp_args(args=[]):
return args
def _bytes2str(b):
- if sys.version_info[0] == 3:
- return b.decode('latin-1')
- else:
- return b
+ return b.decode('latin-1')
def run_exe(exe_path, args=[], echo=False):
""" Runs the given executable as a subprocess, given the