From: Martin v. Löwis <martin@v.loewis.de>
Date: Sat, 4 Dec 2010 09:11:41 +0000 (+0000)
Subject: Add Revision keyword.
X-Git-Tag: v3.2b1~66
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=81c9b45905f2ee7a8cb2d33a499761edd3c81368;p=python

Add Revision keyword.
---

diff --git a/Objects/typeslots.py b/Objects/typeslots.py
index 0e6ef1f9b8..686fb6fcf6 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)