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:
Changes by Alejandro Rodas :
--
nosy: +alex.rodas
___
Python tracker
<http://bugs.python.org/issue15392>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Alejandro Rodas :
--
nosy: +alex.rodas
___
Python tracker
<http://bugs.python.org/issue3405>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Alejandro Rodas :
Added file: http://bugs.python.org/file30074/ZoomInOut.patch
___
Python tracker
<http://bugs.python.org/issue17642>
___
___
Python-bugs-list m
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
Changes by Alejandro Rodas :
Removed file: http://bugs.python.org/file30053/ZoomInOut.patch
___
Python tracker
<http://bugs.python.org/issue17642>
___
___
Python-bug
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
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