summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-25 21:38:29 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-25 21:38:29 (GMT)
commit6e52a5a8376579cc195ba411f2f3e556286fb0f2 (patch)
tree5a78cd049207dfe76916798dad3b83c78462fa78 /Lib/ctypes/test
parent0e33da095f39ad18791cb4457dca868a74d84e72 (diff)
downloadcpython-6e52a5a8376579cc195ba411f2f3e556286fb0f2.zip
cpython-6e52a5a8376579cc195ba411f2f3e556286fb0f2.tar.gz
cpython-6e52a5a8376579cc195ba411f2f3e556286fb0f2.tar.bz2
Merged revisions 75064 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r75064 | ezio.melotti | 2009-09-26 00:35:24 +0300 (Sat, 26 Sep 2009) | 1 line fix print statement ........
Diffstat (limited to 'Lib/ctypes/test')
-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(), ['*'])