summaryrefslogtreecommitdiff
path: root/Objects/typeslots.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-31 20:52:17 -0500
committerBenjamin Peterson <benjamin@python.org>2011-05-31 20:52:17 -0500
commit8a652446e501ef5fe1e87dad7db19b0691a811ef (patch)
treed77f074a95967ea8b190a76a95d44424e63d2bf4 /Objects/typeslots.py
parent4cd5517097bb7975d757576b6dd29a7027fc92f5 (diff)
downloadcpython-8a652446e501ef5fe1e87dad7db19b0691a811ef.tar.gz
remove __version__s dependent on subversion keyword expansion (closes #12221)
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 2e00c80fbb..b24c7f4040 100644
--- a/Objects/typeslots.py
+++ b/Objects/typeslots.py
@@ -3,7 +3,7 @@
import sys, re
-print("/* Generated by typeslots.py $Revision$ */")
+print("/* Generated by typeslots.py */")
res = {}
for line in sys.stdin:
m = re.match("#define Py_([a-z_]+) ([0-9]+)", line)