diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-28 22:30:27 +0800 |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-28 22:30:27 +0800 |
commit | 4af1c6a4fcd6557265e972a6c35d39a3b1604d6e (patch) | |
tree | 349e70824e32136c37fd95e4f11dfabc5c500b73 /Lib/lib-tk/Tkinter.py | |
parent | fee7745ebb1c344d35e2245c4cf9aeb6f0f929a1 (diff) | |
download | cpython-git-4af1c6a4fcd6557265e972a6c35d39a3b1604d6e.tar.gz |
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.
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 81d3ef2626..586129a5ca 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": |