summaryrefslogtreecommitdiff
path: root/Objects/typeslots.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-12-04 09:08:10 +0000
committerMartin v. Löwis <martin@v.loewis.de>2010-12-04 09:08:10 +0000
commit95eb5065f0713b7e0865b63dacbdaa1b7184b14c (patch)
tree56e2848d4b7e15d47690a2fd4debcf901239bfd6 /Objects/typeslots.py
parentb3415c167b443a5d25bb3d0082629c15c2434512 (diff)
downloadcpython-95eb5065f0713b7e0865b63dacbdaa1b7184b14c.tar.gz
Make script 2-vs-3-agnostic.
Diffstat (limited to 'Objects/typeslots.py')
-rw-r--r--Objects/typeslots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeslots.py b/Objects/typeslots.py
index bcc3196bdf..0e6ef1f9b8 100644
--- a/Objects/typeslots.py
+++ b/Objects/typeslots.py
@@ -21,4 +21,4 @@ for line in sys.stdin:
M = max(res.keys())+1
for i in range(1,M):
- print "offsetof(PyHeapTypeObject, %s)," % res[i]
+ print("offsetof(PyHeapTypeObject, %s)," % res[i])