From vykmorod at hotmail.com Wed Oct 15 12:52:26 2008 From: vykmorod at hotmail.com (vykmorod doromkyv) Date: Wed, 15 Oct 2008 10:52:26 +0000 Subject: [Idle-dev] Idle Upgrade Message-ID: Hello group and anyone in it if someone wants to see what have I done to idle ;), in short terms I disassembled it to the last widget attribute and assembled again, I figured out how to properly use tk's mainloop (it even draws opengl in decent framerate). and I added multithrerading support and new pyshell output can be redirected to GUI or SOCKET. primitive HTTP server and generic HTML objects are already included, etc etc if someone wants to see what am I doing ... DYNDNS: aios.selfip.net LINK: http://aios.selfip.net/idle-dev *** if it doesn't work please mail me and I start it up or contact me via windows live vykmorod at hotmail.com _________________________________________________________________ News, entertainment and everything you care about at Live.com. Get it now! http://www.live.com/getstarted.aspx -------------- next part -------------- An HTML attachment was scrubbed... URL: From vykmorod at hotmail.com Tue Oct 21 19:13:51 2008 From: vykmorod at hotmail.com (vykmorod doromkyv) Date: Tue, 21 Oct 2008 17:13:51 +0000 Subject: [Idle-dev] simple UDP chat Message-ID: I'll make this working soon: http://aios.selfip.net you'll easily notice if it's up sorry about last link I posted, it was a bit messy. _________________________________________________________________ Connect to the next generation of MSN Messenger? http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline -------------- next part -------------- An HTML attachment was scrubbed... URL: From vahid.safavi at orthodyne.com Thu Oct 23 16:44:56 2008 From: vahid.safavi at orthodyne.com (Vahid Safavi) Date: Thu, 23 Oct 2008 07:44:56 -0700 Subject: [Idle-dev] input anomaly Message-ID: <49008DE8.5050607@orthodyne.com> Hi FYI: The following interaction happened this morning: IDLE 1.2.2 ==== No Subprocess ==== >>> import pylab as plt >>> plt.ion() Traceback (most recent call last): File "", line 1, in lt.ion() NameError: name 'lt' is not defined >>> plt.ion() >>> >>> I thought it may be interesting. I could not reproduce this again. No specific advice/action is requested ... Yours Vahid From rt8396 at gmail.com Thu Oct 16 05:09:12 2008 From: rt8396 at gmail.com (rt8396 at gmail.com) Date: Thu, 16 Oct 2008 03:09:12 -0000 Subject: [Idle-dev] bug or annoyance in IDLE on win32 Message-ID: bug or annoyance in IDLE: Acutually this has to do with the tk Text widget. By default the Text widget binds mouse event "" to paste currently highlighted text. Now i guess this would not be a problem EXCEPT for the fact that IDLE does not have a Left/Right scroll bar, So the only way to scroll left and right is to hold down and move, causing the binding to be called, and in turn pasting text were you did not want it pasted. : -( if you dont believe me try this: 1. open idle, then goto... file...New Window 2. in the New Window type a string 3. highlight a portion of the string. 4. now press button 2 and the highlighted text will be pasted every time you click and release b2 Maybe there is a use for this but for me it just serves to frustrate me. Ok back to the solution: I know how to override this binding, i do it in all my programs that include a text editor. By inserting this line: text.bind_class('Text', '', lambda e: None)...and WHAMO no more annoying paste action...i love power :-D. I would love to code a solution and submit it to someone but only problem is i have looked through every module in idlelib and i cant make heads or tails of it. So i will have to leave this to someone more qualified than I. Couple of ways to solve this: 1. Allow users to rebind mouse events along with keyboard events...GOOD (Power to the people!) 2. hack the code..BAD 3. write an extension that rebinds at runtime...UGLY 4. Add a left/write scrollbar to IDLE...BAD...i find draging with the mouse to be quicker I really like Python IDLE except for this one little problem, if anyone could help i would be very happy. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: