From 4af1c6a4fcd6557265e972a6c35d39a3b1604d6e Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Thu, 28 Jul 2011 22:30:27 +0800 Subject: [PATCH] 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. --- 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 index 81d3ef26263..586129a5ca3 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -30,7 +30,7 @@ button.pack(side=BOTTOM) tk.mainloop() """ -__version__ = "$Revision$" +__version__ = "$Revision: 81008 $" import sys if sys.platform == "win32": diff --git a/Lib/pickle.py b/Lib/pickle.py index 8c5d51fc15b..005b1b93bca 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -24,7 +24,7 @@ Misc variables: """ -__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 index 6bf6eb371bd..ecbdb44698a 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -37,7 +37,7 @@ Reference Manual pages. __author__ = "Ka-Ping Yee " __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 index 6b9303e898b..112b419da8e 100644 --- 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 index 11359a0b276..00b5c78ec0b 100644 --- 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 *