[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 ___

[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 ___ ___

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

2018-04-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fill free to create a pull request. It may need tests and documentation though. -- ___ Python tracker

[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

[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 ___ ___

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

2013-09-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +serhiy.storchaka versions: +Python 3.4 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3405 ___

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

2013-05-04 Thread Alejandro Rodas
Changes by Alejandro Rodas alexrd...@gmail.com: -- nosy: +alex.rodas ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3405 ___ ___ Python-bugs-list

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

2012-07-11 Thread Mark Summerfield
Mark Summerfield m...@qtrac.eu added the comment: According to the Tcl/Tk docs the 'data' field is a string (i.e., for any user data) and the 'detail' field contains some internal data (so shouldn't be messed with); see http://www.tcl.tk/man/tcl8.5/TkCmd/event.htm#M16 Anyway, I hope you add a

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

2012-07-11 Thread O.C.
O.C. oc-spa...@laposte.net added the comment: I don't agree with this comment. 1) The 'detail' field also contains a string, one of the following: NotifyAncestor, NotifyNonlinearVirtual,... 2) When an event is received, the 'detail' and 'user_data' fields are de facto mixed up. Indeed, the

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

2012-04-03 Thread Andrew Svetlov
Changes by Andrew Svetlov andrew.svet...@gmail.com: -- nosy: +asvetlov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3405 ___ ___ Python-bugs-list

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

2011-01-31 Thread O.C.
O.C. oc-spa...@laposte.net added the comment: Hello, I read the proposed patch event_generate__data2.diff and the Tcl/Tk manual http://www.tcl.tk/man/tcl8.5/TkCmd/bind.htm#M24 * Could you please also add a field e.user_data ? This would simply be a copy of 'd' : --- e.detail = d e.user_data

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

2010-12-21 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- stage: - patch review type: - feature request versions: +Python 3.3 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3405

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

2008-07-19 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: Actually, it could be the detail field too according to http://www.tcl.tk/man/tcl8.5/TkCmd/bind.htm#M24 And this field may not exist, so I'm checking for that now. New patch added. Added file:

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

2008-07-19 Thread Guilherme Polo
Changes by Guilherme Polo [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file10934/event_generate__data.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3405 ___

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

2008-07-18 Thread Guilherme Polo
New submission from Guilherme Polo [EMAIL PROTECTED]: Follows a patch that adds support for the new data option supported event generate. It allows virtual events to pass a tcl object. This patch is only intended to correctly support tcl objects, trying to pass other objects (like a dict) will