summaryrefslogtreecommitdiff
path: root/scripts/maint/practracker/includes.py
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-12-12 15:58:51 +1000
committerteor <teor@torproject.org>2019-12-12 15:58:51 +1000
commit1619f14a0420b0a57d65b9adeab8e8a4ef222b3a (patch)
treee58abb1dd7d9bae4d48ca00fb7b10b837d952a67 /scripts/maint/practracker/includes.py
parenta38014e5c6fa7955e9af61b42eddb2bc9edc29a9 (diff)
downloadtor-1619f14a0420b0a57d65b9adeab8e8a4ef222b3a.tar.gz
tor-1619f14a0420b0a57d65b9adeab8e8a4ef222b3a.zip
python: Add __future__ imports for python 3 compatibility
Except for src/ext, which we may not want to modify. Closes ticket 32732.
Diffstat (limited to 'scripts/maint/practracker/includes.py')
-rwxr-xr-xscripts/maint/practracker/includes.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/maint/practracker/includes.py b/scripts/maint/practracker/includes.py
index ed0e11ef28..fe0f32e253 100755
--- a/scripts/maint/practracker/includes.py
+++ b/scripts/maint/practracker/includes.py
@@ -19,8 +19,10 @@
Advisory .may_include files only result in warnings, rather than errors.
"""
-
+# Future imports for Python 2.7, mandatory in 3.0
+from __future__ import division
from __future__ import print_function
+from __future__ import unicode_literals
import fnmatch
import os