diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-25 21:35:24 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-25 21:35:24 (GMT) |
commit | af30d2eeaabfb184ed0869135c18e0fb17bc6fce (patch) | |
tree | ee77ff22614286ed886cefba66a9270c2567b02b /Lib/ctypes | |
parent | 9abfc457e0b7cd79c848943d5dde604668dfe06d (diff) | |
download | cpython-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__.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(), ['*']) |