[issue1135] xview/yview of Tix.Grid is broken

2009-08-14 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: This has been commited on r74448 now, will merge into py3k. -- resolution: - accepted status: open - closed versions: +Python 2.7, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker

[issue1135] xview/yview of Tix.Grid is broken

2009-08-14 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: This has been commited on r74448 now, will merge into py3k. py3k: r74450 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1135 ___

[issue1135] xview/yview of Tix.Grid is broken

2009-08-07 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: I've looked into this again and now I'm attaching a patch very similar to xview_yview.patch. Is anyone against adding these mixins ? -- Added file: http://bugs.python.org/file14673/xview_yview_mixins.diff

[issue1135] xview/yview of Tix.Grid is broken

2009-01-02 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: I would actually prefer to move xview and yview method to classes like it was done in xview_yview.patch (I've done this on a personal branch some time ago too, but named them as XScroll, YScroll), we can see they are used in several places in

[issue1135] xview/yview of Tix.Grid is broken

2007-10-27 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Sorry for late repry. I couldn't apply Issue1522587's patch itself because it was too old, so I tried only [xy]view{,_moveto,_scroll} functions by applying patch partially. (partial.patch) And yes, it worked. Added file:

[issue1135] xview/yview of Tix.Grid is broken

2007-10-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1135 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1135] xview/yview of Tix.Grid is broken

2007-10-14 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: Hint: There is also Issue1522587, which contains a large patch (by klappnase) for Tix.Grid addressing xview/yview and several other issues. I do not know if it fixes this issue exactly. Can you take a look at it, ocean-city? Regards, Matthias Kievernagel

[issue1135] xview/yview of Tix.Grid is broken

2007-09-19 Thread Georg Brandl
Georg Brandl added the comment: IMO the patch is not complete, the xview method should rather be implemented like these in Tkinter.py. Assigning to Martin. -- assignee: - loewis nosy: +georg.brandl, loewis __ Tracker [EMAIL PROTECTED]

[issue1135] xview/yview of Tix.Grid is broken

2007-09-19 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: OK, how about this patch? I extracted [xy]view{,_moveto,_scroll} as mixin class [XY]View, and included them. It seems working. __ Tracker [EMAIL

[issue1135] xview/yview of Tix.Grid is broken

2007-09-18 Thread Sean Reifschneider
Sean Reifschneider added the comment: I can verify that on Red Hat 7 Python 2.5 that the test does fail and the patch resolves it. -- nosy: +jafo priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1135

[issue1135] xview/yview of Tix.Grid is broken

2007-09-18 Thread Sean Reifschneider
Changes by Sean Reifschneider: -- nosy: -jafo __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1135 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1135] xview/yview of Tix.Grid is broken

2007-09-14 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- versions: +Python 2.6 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1135 __

[issue1135] xview/yview of Tix.Grid is broken

2007-09-08 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : Attached code test_tixGrid.py fails with following error message. TypeError: yview() takes exactly 1 argument (4 given) -- components: Tkinter files: test_tixGrid.py

[issue1135] xview/yview of Tix.Grid is broken

2007-09-08 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Probably right fix is attached file fix_tixGrid.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1135