summaryrefslogtreecommitdiffstats
path: root/bin/check-implicit-pointer-usage.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-20 11:28:14 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-20 11:28:14 +0000
commitcf4c50ffa68ce110c40ae3926d60b241bbe230c2 (patch)
tree1dae677b2d805395e4a35d9230e3a299b166f681 /bin/check-implicit-pointer-usage.py
parent15b8a5bbdf3fb81edc6eac707bd2bd78d54394cf (diff)
downloadportage-cf4c50ffa68ce110c40ae3926d60b241bbe230c2.tar.gz
portage-cf4c50ffa68ce110c40ae3926d60b241bbe230c2.tar.bz2
portage-cf4c50ffa68ce110c40ae3926d60b241bbe230c2.zip
Support print() function with Python 2 in some files.
svn path=/main/trunk/; revision=14291
Diffstat (limited to 'bin/check-implicit-pointer-usage.py')
-rwxr-xr-xbin/check-implicit-pointer-usage.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/check-implicit-pointer-usage.py b/bin/check-implicit-pointer-usage.py
index c50424b83..65b0d1228 100755
--- a/bin/check-implicit-pointer-usage.py
+++ b/bin/check-implicit-pointer-usage.py
@@ -13,6 +13,9 @@
# interpreted as pointers. Those are almost guaranteed to cause
# crashes.
#
+
+from __future__ import print_function
+
import re
import sys