summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-12-04 09:11:41 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-12-04 09:11:41 (GMT)
commit81c9b45905f2ee7a8cb2d33a499761edd3c81368 (patch)
tree9aae042c9d32d441edaa7deb4e398d6d88c8ce5d
parentd23047b62c6f885def9020bd9b304110f9b9c52d (diff)
downloadcpython-81c9b45905f2ee7a8cb2d33a499761edd3c81368.zip
cpython-81c9b45905f2ee7a8cb2d33a499761edd3c81368.tar.gz
cpython-81c9b45905f2ee7a8cb2d33a499761edd3c81368.tar.bz2
Add Revision keyword.
-rw-r--r--Objects/typeslots.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/typeslots.py b/Objects/typeslots.py
index 0e6ef1f..686fb6f 100644
--- a/Objects/typeslots.py
+++ b/Objects/typeslots.py
@@ -3,6 +3,7 @@
import sys, re
+print("/* Generated by typeslots.py $Revision$ */")
res = {}
for line in sys.stdin:
m = re.match("#define Py_([a-z_]+) ([0-9]+)", line)