[issue12236] Tkinter __version__ uses subversion substitution

2011-06-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2011/6/2 Ned Deily : > > Ned Deily added the comment: > > Can we be sure it's harmless?  A quick Google search turned up at least one > package that depends on Tkinter.__version__ (granted, for Python 2). > > http://permalink.gmane.org/gmane.comp.python.mat

[issue12236] Tkinter __version__ uses subversion substitution

2011-06-02 Thread Julian Taylor
Julian Taylor added the comment: matplotlib fails to build due to this with 2.7.2rc1 in ubuntu oneiric (but its seems simple to fix): https://launchpad.net/ubuntu/+source/matplotlib/1.0.1-2ubuntu1/+build/2535369 -- ___ Python tracker

[issue12236] Tkinter __version__ uses subversion substitution

2011-06-01 Thread Ned Deily
Ned Deily added the comment: Can we be sure it's harmless? A quick Google search turned up at least one package that depends on Tkinter.__version__ (granted, for Python 2). http://permalink.gmane.org/gmane.comp.python.matplotlib.general/24453 -- nosy: +ned.deily

[issue12236] Tkinter __version__ uses subversion substitution

2011-06-01 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yes, it's harmless, though. I've removed it for 3.3. -- priority: release blocker -> normal resolution: -> out of date status: open -> closed ___ Python tracker __

[issue12236] Tkinter __version__ uses subversion substitution

2011-06-01 Thread Ned Deily
Changes by Ned Deily : -- nosy: +benjamin.peterson, georg.brandl priority: normal -> release blocker versions: +Python 3.1, Python 3.2 ___ Python tracker ___

[issue12236] Tkinter __version__ uses subversion substitution

2011-06-01 Thread Julian Taylor
New submission from Julian Taylor : ./Lib/lib-tk/Tkinter.py:33 has this svn keyword substitution: __version__ = "$Revision$" Due to the change to hg this field is not substituted and makes __version__ quite pointless. This affects the python 2.7.2rc1. -- components: Tkinter messages: