summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-25 21:35:24 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-25 21:35:24 (GMT)
commitaf30d2eeaabfb184ed0869135c18e0fb17bc6fce (patch)
treeee77ff22614286ed886cefba66a9270c2567b02b /Lib/ctypes
parent9abfc457e0b7cd79c848943d5dde604668dfe06d (diff)
downloadcpython-af30d2eeaabfb184ed0869135c18e0fb17bc6fce.zip
cpython-af30d2eeaabfb184ed0869135c18e0fb17bc6fce.tar.gz
cpython-af30d2eeaabfb184ed0869135c18e0fb17bc6fce.tar.bz2
fix print statement
Diffstat (limited to 'Lib/ctypes')
-rw-r--r--Lib/ctypes/test/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/__init__.py b/Lib/ctypes/test/__init__.py
index 1e0460a..82dc9e3 100644
--- a/Lib/ctypes/test/__init__.py
+++ b/Lib/ctypes/test/__init__.py
@@ -58,7 +58,7 @@ def get_tests(package, mask, verbosity, exclude=()):
if modname.split(".")[-1] in exclude:
skipped.append(modname)
if verbosity > 1:
- print >> sys.stderr, "Skipped %s: excluded" % modname
+ print("Skipped %s: excluded" % modname, file=sys.stderr)
continue
try:
mod = __import__(modname, globals(), locals(), ['*'])