From: Senthil Kumaran Date: Thu, 28 Jul 2011 14:30:27 +0000 (+0800) Subject: Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with a high... X-Git-Tag: v2.7.3rc1~567 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4af1c6a4fcd6557265e972a6c35d39a3b1604d6e;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 81d3ef262636..586129a5ca30 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 8c5d51fc15be..005b1b93bcad 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 6bf6eb371bd6..ecbdb44698af 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 6b9303e898b9..112b419da8e5 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 11359a0b2761..00b5c78ec0bf 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 *