diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-28 14:30:27 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-28 14:30:27 (GMT) |
commit | 4af1c6a4fcd6557265e972a6c35d39a3b1604d6e (patch) | |
tree | 349e70824e32136c37fd95e4f11dfabc5c500b73 | |
parent | fee7745ebb1c344d35e2245c4cf9aeb6f0f929a1 (diff) | |
download | cpython-4af1c6a4fcd6557265e972a6c35d39a3b1604d6e.zip cpython-4af1c6a4fcd6557265e972a6c35d39a3b1604d6e.tar.gz cpython-4af1c6a4fcd6557265e972a6c35d39a3b1604d6e.tar.bz2 |
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.
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 | ||||
-rw-r--r-- | Lib/pickle.py | 2 | ||||
-rwxr-xr-x | Lib/pydoc.py | 2 | ||||
-rw-r--r-- | Lib/tarfile.py | 2 | ||||
-rw-r--r-- | 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 81d3ef2..586129a 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 8c5d51f..005b1b9 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 6bf6eb3..ecbdb44 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -37,7 +37,7 @@ Reference Manual pages. __author__ = "Ka-Ping Yee <ping@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 index 6b9303e..112b419 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 11359a0..00b5c78 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 * |