mirror of https://github.com/python/cpython
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.
This commit is contained in:
parent
fee7745ebb
commit
4af1c6a4fc
|
@ -30,7 +30,7 @@ button.pack(side=BOTTOM)
|
|||
tk.mainloop()
|
||||
"""
|
||||
|
||||
__version__ = "$Revision$"
|
||||
__version__ = "$Revision: 81008 $"
|
||||
|
||||
import sys
|
||||
if sys.platform == "win32":
|
||||
|
|
|
@ -24,7 +24,7 @@ Misc variables:
|
|||
|
||||
"""
|
||||
|
||||
__version__ = "$Revision$" # Code version
|
||||
__version__ = "$Revision: 72223 $" # Code version
|
||||
|
||||
from types import *
|
||||
from copy_reg import dispatch_table
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"""Read from and write to tar format archives.
|
||||
"""
|
||||
|
||||
__version__ = "$Revision$"
|
||||
__version__ = "$Revision: 85213 $"
|
||||
# $Source$
|
||||
|
||||
version = "0.9.0"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
"""Interface to the Expat non-validating XML parser."""
|
||||
__version__ = '$Revision$'
|
||||
__version__ = '$Revision: 17640 $'
|
||||
|
||||
from pyexpat import *
|
||||
|
|
Loading…
Reference in New Issue