[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: Done. Michael, thanks for the report! -- assignee: -> zach.ware resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2b8d9276ad5b by Zachary Ware in branch '2.7': Issue #21303, #20565: Updated the version of Tcl/Tk used on Windows http://hg.python.org/cpython/rev/2b8d9276ad5b -- nosy: +python-dev ___ Python tracker

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: 8.5.15 sounds good to me; here's the patch to 2.7 once the 8.5.15 sources are on svn.python.org as tcl-8.5.15.0 and tk-8.5.15.0, no modifications necessary. -- keywords: +patch Added file: http://bugs.python.org/file35002/issue21303-2.7-tcl-upgrade.diff

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Benjamin Peterson
Benjamin Peterson added the comment: On Mon, Apr 21, 2014, at 9:38, Zachary Ware wrote: > > Zachary Ware added the comment: > > Any opinions on which version to update to? 8.5.11 is easy and available > and fixes the bug; 8.5.15 is the newest 8.5 but not on svn.python.org; > 8.6.1 is available

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Ned Deily
Ned Deily added the comment: FWIW, ActiveState is shipping 8.5.15 and 8.6.1 in ActiveTcl. For the OS X installers, we have been using 8.5.x (for the 64-bit/32-bit installer) because that's also what Apple has been shipping in recent OS X versions. Serhiy has committed a number of fixes in 3.

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Zachary Ware
Zachary Ware added the comment: Any opinions on which version to update to? 8.5.11 is easy and available and fixes the bug; 8.5.15 is the newest 8.5 but not on svn.python.org; 8.6.1 is available and is also what 3.4 (and currently 3.5) ships with. -- _

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Benjamin Peterson
Benjamin Peterson added the comment: On Mon, Apr 21, 2014, at 8:54, Zachary Ware wrote: > > Zachary Ware added the comment: > > >From some testing, this looks like a Tcl/Tk bug, fixed somewhere between > >8.5.9 and 8.5.11: Python 3.2.5 which shipped with Tcl/Tk 8.5.9 shows this > >bug; Python

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Zachary Ware
Zachary Ware added the comment: >From some testing, this looks like a Tcl/Tk bug, fixed somewhere between 8.5.9 >and 8.5.11: Python 3.2.5 which shipped with Tcl/Tk 8.5.9 shows this bug; >Python 3.3.5 which shipped with Tcl/Tk 8.5.11 does not, and Python 2.7 built >with Tcl/Tk 8.5.11 doesn't sh

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Michael Boldischar
Michael Boldischar added the comment: Windows 7 64-bit: >>> root.tk.eval('info patchlevel') '8.5.2' Debian 7 Linux 64-bit: root.tk.eval('info patchlevel') '8.5.11' -- ___ Python tracker ___

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Michael Boldischar
Michael Boldischar added the comment: Windows 7 64-bit: python --version Python 2.7.6 Debian 7 Linux 64-bit: $ python --version Python 2.7.3 -- ___ Python tracker ___ __

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-18 Thread Zachary Ware
Zachary Ware added the comment: Can you tell us some version numbers, please? Specifically, which micro version of Python 2.7 (e.g. 2.7.6) on both platforms, and what version of Tcl on Linux? Tcl on Windows should be version 8.5.2; if it's different, please tell us that too. Here's the easi

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-18 Thread Michael Boldischar
Changes by Michael Boldischar : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-18 Thread Michael Boldischar
Changes by Michael Boldischar : -- components: +Tkinter versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-18 Thread Michael Boldischar
New submission from Michael Boldischar: Here is my code: self._image_set_number = Spinbox(self._ramp_group, from_=0, to=999, command=self.reset_rep, format="%03.0f") self._repetition_change = Spinbox(self._ramp_group, from_=00, to=99, format="%02.0f") On Linux, the spinners behave as ex