[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2013-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated to tip and added test. Terry, do you think this patch should be applied to maintenance release? It change a behavior. However current behavior doesn't look desirable. -- Added file:

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2013-10-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6160 ___ ___

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2013-10-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I withdraw my previous comment because the bbox command newer returns empty result. The patch LGTM. -- versions: +Python 3.3, Python 3.4 -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2013-01-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It should be self._getints(...) or None as in other methods. -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6160 ___

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2012-06-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I believe that for 3.x, Lib/lib-tk/Tkinter.py is not Lib/tkinter/__init__.py. I will put this on my list of issues to look at if possible. -- nosy: +terry.reedy ___ Python tracker

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2010-08-04 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The patch is simple, can it be committed as is? -- nosy: +BreamoreBoy stage: - patch review type: - behavior versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2009-05-31 Thread Guilherme Polo
New submission from Guilherme Polo ggp...@gmail.com: The current bbox method for Tkinter.Spinbox is very likely to never return a tuple. The attached patch uses _getints to always return a tuple of integers. The other changes in the patch are about removing unneeded return statements.