aboutsummaryrefslogtreecommitdiff
path: root/contrib/scripts/find_typedefs.py
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2019-03-10 19:46:23 +0100
committerHartmut Goebel <h.goebel@crazy-compilers.com>2019-03-10 19:49:39 +0100
commit4deae01fba7218d3e31cc008e390c392ea9a2238 (patch)
treed71a988f640e80a40768a102619a1baf7363a545 /contrib/scripts/find_typedefs.py
parent8de3cc8ba8126cd2464a010526b94b8daf63718b (diff)
downloadgnunet-4deae01fba7218d3e31cc008e390c392ea9a2238.tar.gz
gnunet-4deae01fba7218d3e31cc008e390c392ea9a2238.zip
Cleanup Python code: remove `import __future__`.
All of these only made Python 2 accept some Python 3 language idioms, and the code is Python-3-only.
Diffstat (limited to 'contrib/scripts/find_typedefs.py')
-rw-r--r--contrib/scripts/find_typedefs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/scripts/find_typedefs.py b/contrib/scripts/find_typedefs.py
index b344cee2b..804eae235 100644
--- a/contrib/scripts/find_typedefs.py
+++ b/contrib/scripts/find_typedefs.py
@@ -1,7 +1,5 @@
1# XXX (F841): local variable 'li' is assigned to but never used 1# XXX (F841): local variable 'li' is assigned to but never used
2 2
3from __future__ import print_function
4from __future__ import unicode_literals
5import os 3import os
6import re 4import re
7import sys 5import sys