[Python-checkins] cpython (2.7): Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with a

senthil.kumaran python-checkins at python.org
Thu Jul 28 17:39:45 CEST 2011


http://hg.python.org/cpython/rev/f15442543e24
changeset:   71539:f15442543e24
branch:      2.7
parent:      71536:f9cf55bbe9b9
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Thu Jul 28 22:30:27 2011 +0800
summary:
  Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with a high number so that code relying on them does not break.

files:
  Lib/lib-tk/Tkinter.py    |  2 +-
  Lib/pickle.py            |  2 +-
  Lib/pydoc.py             |  2 +-
  Lib/tarfile.py           |  2 +-
  Lib/xml/parsers/expat.py |  2 +-
  5 files changed, 5 insertions(+), 5 deletions(-)


diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -30,7 +30,7 @@
 tk.mainloop()
 """
 
-__version__ = "$Revision$"
+__version__ = "$Revision: 81008 $"
 
 import sys
 if sys.platform == "win32":
diff --git a/Lib/pickle.py b/Lib/pickle.py
--- a/Lib/pickle.py
+++ b/Lib/pickle.py
@@ -24,7 +24,7 @@
 
 """
 
-__version__ = "$Revision$"       # Code version
+__version__ = "$Revision: 72223 $"       # Code version
 
 from types import *
 from copy_reg import dispatch_table
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -37,7 +37,7 @@
 __author__ = "Ka-Ping Yee <ping at lfw.org>"
 __date__ = "26 February 2001"
 
-__version__ = "$Revision$"
+__version__ = "$Revision: 88564 $"
 __credits__ = """Guido van Rossum, for an excellent programming language.
 Tommy Burnette, the original creator of manpy.
 Paul Prescod, for all his work on onlinehelp.
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -30,7 +30,7 @@
 """Read from and write to tar format archives.
 """
 
-__version__ = "$Revision$"
+__version__ = "$Revision: 85213 $"
 # $Source$
 
 version     = "0.9.0"
diff --git a/Lib/xml/parsers/expat.py b/Lib/xml/parsers/expat.py
--- a/Lib/xml/parsers/expat.py
+++ b/Lib/xml/parsers/expat.py
@@ -1,4 +1,4 @@
 """Interface to the Expat non-validating XML parser."""
-__version__ = '$Revision$'
+__version__ = '$Revision: 17640 $'
 
 from pyexpat import *

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list