diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-25 21:38:29 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-25 21:38:29 (GMT) |
commit | 6e52a5a8376579cc195ba411f2f3e556286fb0f2 (patch) | |
tree | 5a78cd049207dfe76916798dad3b83c78462fa78 /Lib/ctypes | |
parent | 0e33da095f39ad18791cb4457dca868a74d84e72 (diff) | |
download | cpython-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')
-rw-r--r-- | Lib/ctypes/test/__init__.py | 2 |
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(), ['*']) |