]> granicus.if.org Git - python/commitdiff
Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with a high...
authorSenthil Kumaran <senthil@uthcode.com>
Thu, 28 Jul 2011 14:30:27 +0000 (22:30 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Thu, 28 Jul 2011 14:30:27 +0000 (22:30 +0800)
Lib/lib-tk/Tkinter.py
Lib/pickle.py
Lib/pydoc.py
Lib/tarfile.py
Lib/xml/parsers/expat.py

index 81d3ef2626365fe75e0b70aa55d474188c0ec41e..586129a5ca30c2cc13e1a69d7725614ade1cffbd 100644 (file)
@@ -30,7 +30,7 @@ button.pack(side=BOTTOM)
 tk.mainloop()
 """
 
-__version__ = "$Revision$"
+__version__ = "$Revision: 81008 $"
 
 import sys
 if sys.platform == "win32":
index 8c5d51fc15be2691aa4ecea6286cf176cb4acd8a..005b1b93bcaddeec6856b56239b01cb86bd76e0e 100644 (file)
@@ -24,7 +24,7 @@ Misc variables:
 
 """
 
-__version__ = "$Revision$"       # Code version
+__version__ = "$Revision: 72223 $"       # Code version
 
 from types import *
 from copy_reg import dispatch_table
index 6bf6eb371bd67e150feccc6c8599f7eebfecb317..ecbdb44698af8cce040939cab6bad34c974a5294 100755 (executable)
@@ -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.
index 6b9303e898b9d67d73b13d81f4d8a36384cc693c..112b419da8e5416d974a8ba7a684a707443eeec4 100644 (file)
@@ -30,7 +30,7 @@
 """Read from and write to tar format archives.
 """
 
-__version__ = "$Revision$"
+__version__ = "$Revision: 85213 $"
 # $Source$
 
 version     = "0.9.0"
index 11359a0b27613d6203f96654adcdc0e2a62d9072..00b5c78ec0bfa4aa9d5e7734f9667000f686c3b4 100644 (file)
@@ -1,4 +1,4 @@
 """Interface to the Expat non-validating XML parser."""
-__version__ = '$Revision$'
+__version__ = '$Revision: 17640 $'
 
 from pyexpat import *