From 81c9b45905f2ee7a8cb2d33a499761edd3c81368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 4 Dec 2010 09:11:41 +0000 Subject: [PATCH] Add Revision keyword. --- Objects/typeslots.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Objects/typeslots.py b/Objects/typeslots.py index 0e6ef1f9b82..686fb6fcf6e 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)