summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-01 01:52:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-01 01:52:17 (GMT)
commit8c6f88efa2371addacc2acf5cc4634974160406c (patch)
treef0bd5af1eb106bab7fdb893fcd9039ac42ed5a74 /Objects
parent9e3e1c6e4e98b7568fcb29708aeac88bc677c62c (diff)
downloadcpython-8c6f88efa2371addacc2acf5cc4634974160406c.zip
cpython-8c6f88efa2371addacc2acf5cc4634974160406c.tar.gz
cpython-8c6f88efa2371addacc2acf5cc4634974160406c.tar.bz2
remove __version__s dependent on subversion keyword expansion (closes #12221)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeslots.inc2
-rw-r--r--Objects/typeslots.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc
index 5186dcf..caa1e03 100644
--- a/Objects/typeslots.inc
+++ b/Objects/typeslots.inc
@@ -1,4 +1,4 @@
-/* Generated by typeslots.py $Revision$ */
+/* Generated by typeslots.py */
0,
0,
offsetof(PyHeapTypeObject, as_mapping.mp_ass_subscript),
diff --git a/Objects/typeslots.py b/Objects/typeslots.py
index 2e00c80..b24c7f4 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)