[issue23831] tkinter canvas lacks of moveto method.

2018-06-10 Thread Matthias Kievernagel
Change by Matthias Kievernagel : -- nosy: +mkiever ___ Python tracker <https://bugs.python.org/issue23831> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3405] Add support for the new data option supported by event generate (Tk 8.5)

2018-05-29 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: So I pulled, but it seems the CLA is stuck somewhere. Investigating... -- ___ Python tracker <https://bugs.python.org/issue3

[issue3405] Add support for the new data option supported by event generate (Tk 8.5)

2018-05-27 Thread Matthias Kievernagel
Change by Matthias Kievernagel : -- pull_requests: +6776 ___ Python tracker <https://bugs.python.org/issue3405> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3405] Add support for the new data option supported by event generate (Tk 8.5)

2018-04-22 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: I have a patched Python 3.5.3 running mostly following the comments by O.C. If no one else is active on this I can try to prepare something for submission. -- ___ Python tracker <https://bugs.python.

[issue25451] tkinter: PhotoImage transparency methods

2018-04-08 Thread Matthias Kievernagel
Change by Matthias Kievernagel : -- nosy: +mkiever ___ Python tracker <https://bugs.python.org/issue25451> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3405] Add support for the new data option supported by event generate (Tk 8.5)

2018-03-19 Thread Matthias Kievernagel
Change by Matthias Kievernagel : -- nosy: +mkiever ___ Python tracker <https://bugs.python.org/issue3405> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22810] tkinter: "alloc: invalid block:" after askopenfilename

2017-07-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel : -- nosy: +mkiever ___ Python tracker <http://bugs.python.org/issue22810> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7109] broken link on news page

2009-10-12 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: Sorry. Somehow this page did not show up on my google search on python.org. Problem sent to webmaster. Thanks. -- ___ Python tracker <http://bugs.python.org/issue7

[issue7109] broken link on news page

2009-10-12 Thread Matthias Kievernagel
New submission from Matthias Kievernagel : Hello, there is a broken link on http://www.python.org/news/ at Python 3.0 is an ex-release! Long live Python 3.1! There will be no Python 3.0.2 release or further 3.0.x maintenance/ security releases. All users of Python 3.0 are strongly encouraged

[issue6137] Pickle migration: Should pickle map "copy_reg" to "copyreg"?

2009-06-01 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: Applied the patch http://bugs.python.org/file14124/compat_pickle.diff to rev. 73106. Patch applies fine, 'make test' passes and it solves my problem. (which is far from a complete test case though - only 5 small pickles) Thanks, Matthias K

[issue6137] Pickle migration: Should pickle map "copy_reg" to "copyreg"?

2009-05-28 Thread Matthias Kievernagel
New submission from Matthias Kievernagel : Hello, while porting something to Python 3.1a1 I found out that Python 3 cannot load most Python 2 pickles of any protocol because copy_reg has been renamed to copyreg. Found this comment by Skip Montanaro in related issue: http://bugs.python.org

[issue1581476] Text search gives bad count if called from variable trace

2009-01-09 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: >Matthias: your issue about the pattern should be placed in a >different >issue. Done as Issue4890. Appended a simplified copy of the demo program and a patch there. I do not understand your remark about None though (see new issue). Cheers,

[issue4890] handling empty text search pattern in tkinter

2009-01-09 Thread Matthias Kievernagel
Changes by Matthias Kievernagel : -- keywords: +patch Added file: http://bugs.python.org/file12661/text_search_pattern.patch ___ Python tracker <http://bugs.python.org/issue4

[issue4890] handling empty text search pattern in tkinter

2009-01-09 Thread Matthias Kievernagel
New submission from Matthias Kievernagel : Split this from issue 1581476 as suggested by Guilherme Polo (gpolo). >Matthias: your issue about the pattern should be placed in a >different >issue. Quote of my original report: (This is about the search function of the Text class in Tki

[issue1581476] Text search gives bad count if called from variable trace

2008-12-04 Thread Matthias Kievernagel
Matthias Kievernagel <[EMAIL PROTECTED]> added the comment: Nice to see someone working on this. One thing I've checked (iirc): You can set iVar in doSearch by hand like this: iVar.set(2) print 'iVar.get()', iVar.get() And iVar rests at this value. t.search does not

[issue837234] Tk.quit and sys.exit cause Fatal Error

2008-05-17 Thread Matthias Kievernagel
Matthias Kievernagel <[EMAIL PROTECTED]> added the comment: Hi, found a related (duplicate ?) issue which mentions a platform and has code producing the error: http://bugs.python.org/issue775544 Can someone based on WinXP try the code? Attaching it here for easier reference. Works w

[issue1362475] Text.edit_modified() doesn't work

2008-05-17 Thread Matthias Kievernagel
Matthias Kievernagel <[EMAIL PROTECTED]> added the comment: Hi Guilherme, funny, I wasn't aware of this duplicate of this issue until I got the message of your comment :) The other duplicate is: http://bugs.python.org/issue1643641 which was closed by Georg Brandl upon my request.

[issue1602742] itemconfigure returns incorrect text property of text items

2008-04-02 Thread Matthias Kievernagel
Matthias Kievernagel <[EMAIL PROTECTED]> added the comment: I no longer know what I meant with "document string is broken". It is not very clear, but not broken. It does not specify clearly the return value in the case of 'without arguments'. The problem is still pr

[issue2535] duplicate Misc.lower

2008-04-02 Thread Matthias Kievernagel
New submission from Matthias Kievernagel <[EMAIL PROTECTED]>: ron longo posted this remark in the Tkinter list: >Don't know if this is the place to report this. Not really a bug, >however, >method lower() is defined twice in class Misc in the module Tkinter.py. &

[issue429031] Text widget, bindtags and Tabs

2008-01-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel: Added file: http://bugs.python.org/file9168/429031-tabs-nok.tcl Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue429031> __

[issue429031] Text widget, bindtags and Tabs

2008-01-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel: Added file: http://bugs.python.org/file9167/429031-tabs-ok.tcl Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue429031> ___

[issue429031] Text widget, bindtags and Tabs

2008-01-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel: Added file: http://bugs.python.org/file9166/429031-tabs-nok.py Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue429031> ___

[issue429031] Text widget, bindtags and Tabs

2008-01-14 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: skip was right. An equivalent tcl program shows the same behaviour. Tested with tcl/tk 8.4.6 Corrected python scripts (the original attached files were broken) and equivalent tcl scripts attached. Matthias Kievernagel Added file: http://bugs.python.org

[issue429031] Text widget, bindtags and Tabs

2008-01-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel: -- nosy: +mkiever Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue429031> ___ Python-bugs-list mailing list

[issue961805] Text.edit_modified() fails

2008-01-11 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: Retested revision 59927 from the trunk. Error is still there, is demonstrated by attached editModified.py (click 'modified?') and patch is still applicable and corrects the problem. Regards, Matthias Kievernagel -- versions: +

[issue1522587] Tix.Grid patch

2007-10-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel: -- nosy: +mkiever _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1522587> _ ___ Python-bugs-list mailing list

[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

[issue1643641] Fix Bug 1362475 Text.edit_modified() doesn't work

2007-10-14 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: Moved my patch to Issue961805. (duplication was created when moving from SF bugs/patches) This issue should be closed down. Regards, Matthias Kievernagel _ Tracker <[EMAIL PROTECTED]> <http://bugs.p

[issue961805] Text.edit_modified() fails

2007-10-14 Thread Matthias Kievernagel
Changes by Matthias Kievernagel: Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue961805> ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue961805] Text.edit_modified() fails

2007-10-14 Thread Matthias Kievernagel
Matthias Kievernagel added the comment: Moved my patch from Issue1643641 to this Issue. (duplication was created when moving from SF bugs/patches) Patch to be applied with 'patch -p0' I have also attached a demo where you can test all Text.edit_* functions. Regards, Matthias K