classification
Title: Tkinter.Spinbox: fix for bbox and removed some uninteresting returns
Type: behavior Stage: patch review
Components: Tkinter Versions: Python 3.2, Python 3.1, Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, gpolo
Priority: normal Keywords: patch

Created on 2009-06-01 03:22 by gpolo, last changed 2010-08-04 19:02 by BreamoreBoy.

Files
File name Uploaded Description Edit
Spinbox_fixes.diff gpolo, 2009-06-01 03:22 review
Messages (2)
msg88634 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-06-01 03:22
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.
msg112864 - (view) Author: Mark Lawrence (BreamoreBoy) Date: 2010-08-04 19:02
The patch is simple, can it be committed as is?
History
Date User Action Args
2010-08-04 19:02:37BreamoreBoysetversions: + Python 3.2
nosy: + BreamoreBoy

messages: + msg112864

type: behavior
stage: patch review
2009-06-01 03:22:08gpolocreate