[issue13657] IDLE doesn't support sys.ps1 and sys.ps2.

2013-05-19 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have reviewed the patch, and apart from setting the promt, I think it would be possible to set it at the beginning with the same approach: def getprompt(self): self.interp.runcommand(textwrap.dedent("""\ try:

[issue15392] Create a unittest framework for IDLE

2013-05-17 Thread Alejandro Rodas
Changes by Alejandro Rodas : -- nosy: +alex.rodas ___ Python tracker <http://bugs.python.org/issue15392> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17642] IDLE add font resizing hot keys

2013-05-13 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have merged the two patches: Now it queries the font size as I did in the original patch, and it also stores the position of the cursor based on Abhishek Kumar's modification of ZoomFont.py. -- Added file: http://bugs.python.org/file

[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 : -- nosy: +alex.rodas ___ Python tracker <http://bugs.python.org/issue3405> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17642] IDLE add font resizing hot keys

2013-04-29 Thread Alejandro Rodas
Changes by Alejandro Rodas : Added file: http://bugs.python.org/file30074/ZoomInOut.patch ___ Python tracker <http://bugs.python.org/issue17642> ___ ___ Python-bugs-list m

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: Sorry, I submitted a patch which only works on Windows. This one has been tested on Ubuntu too. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Changes by Alejandro Rodas : Removed file: http://bugs.python.org/file30053/ZoomInOut.patch ___ Python tracker <http://bugs.python.org/issue17642> ___ ___ Python-bug

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have uploaded my patch as well, it doesn't make use of tkfont (just vanilla Tkinter methods) and it works both in Python 2.7 and 3.4 without the need of any import. I think the main difference with Abhishek Kumar's version is that mine doe

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have made a patch to zoom in and out with and events, respectively. I'll upload it soon since the test suite is giving me an error in test_multiprocessing, even before writing the patch. I have taken a look at ZoomFont.py of IdleX and it also ha