diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-06-01 01:52:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-06-01 01:52:17 (GMT) |
commit | 8c6f88efa2371addacc2acf5cc4634974160406c (patch) | |
tree | f0bd5af1eb106bab7fdb893fcd9039ac42ed5a74 /Lib | |
parent | 9e3e1c6e4e98b7568fcb29708aeac88bc677c62c (diff) | |
download | cpython-8c6f88efa2371addacc2acf5cc4634974160406c.zip cpython-8c6f88efa2371addacc2acf5cc4634974160406c.tar.gz cpython-8c6f88efa2371addacc2acf5cc4634974160406c.tar.bz2 |
remove __version__s dependent on subversion keyword expansion (closes #12221)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pickle.py | 2 | ||||
-rwxr-xr-x | Lib/pydoc.py | 1 | ||||
-rw-r--r-- | Lib/tarfile.py | 2 | ||||
-rw-r--r-- | Lib/tkinter/__init__.py | 2 | ||||
-rw-r--r-- | Lib/xml/parsers/expat.py | 2 |
5 files changed, 0 insertions, 9 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py index aca8fd1..fdeadee 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -23,8 +23,6 @@ Misc variables: """ -__version__ = "$Revision$" # Code version - from types import FunctionType, BuiltinFunctionType from copyreg import dispatch_table from copyreg import _extension_registry, _inverted_registry, _extension_cache diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 548e71c..89d00a3 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -37,7 +37,6 @@ __all__ = ['help'] __author__ = "Ka-Ping Yee <ping@lfw.org>" __date__ = "26 February 2001" -__version__ = "$Revision$" __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 6b663f4..8129a80 100644 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -29,8 +29,6 @@ """Read from and write to tar format archives. """ -__version__ = "$Revision$" - version = "0.9.0" __author__ = "Lars Gust\u00e4bel (lars@gustaebel.de)" __date__ = "$Date$" diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index e54c53f..ee87147 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -30,8 +30,6 @@ button.pack(side=BOTTOM) tk.mainloop() """ -__version__ = "$Revision$" - import sys if sys.platform == "win32": # Attempt to configure Tcl/Tk without requiring PATH diff --git a/Lib/xml/parsers/expat.py b/Lib/xml/parsers/expat.py index a805b82..bcbe9fb 100644 --- a/Lib/xml/parsers/expat.py +++ b/Lib/xml/parsers/expat.py @@ -1,6 +1,4 @@ """Interface to the Expat non-validating XML parser.""" -__version__ = '$Revision$' - import sys from pyexpat import * |