Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of old IDLE. Lib/idlelib rules! | Guido van Rossum | 2003-06-14 | 70 | -10923/+0 |
| | |||||
* | Removing new files accidentally checked in on the trunk rather than on the | Guido van Rossum | 2003-04-29 | 26 | -4632/+0 |
| | | | | idlefork-merge-branch. | ||||
* | Add back files that were accidentally deleted on the trunk rather than | Guido van Rossum | 2003-04-29 | 14 | -0/+1865 |
| | | | | on the idlefork-merge-branch as intended. | ||||
* | Checking in IDLEFORK exactly as it appears in the idlefork CVS. | Guido van Rossum | 2003-04-29 | 40 | -1865/+4632 |
| | | | | On a branch, for now. | ||||
* | Kurt pointed out another method affected by the changes to pyclbr.py. | Raymond Hettinger | 2003-01-22 | 1 | -2/+4 |
| | |||||
* | SF bug #668906: class browser raises AttributeError | Raymond Hettinger | 2003-01-18 | 1 | -1/+1 |
| | | | | | | | | The Py2.3 updates to the pyclbr module return both Class and Function objects. The IDLE ClassBrowser module only knew about Class and could not handle objects which did not define "super". Fixed by adding a guard. | ||||
* | Properly find and install icons even if calling setup.py from the build dir. | Martin v. Löwis | 2003-01-16 | 1 | -2/+2 |
| | |||||
* | SF bug #652933 (for IdleFork): Open Module "math" Fails | Raymond Hettinger | 2003-01-07 | 1 | -1/+4 |
| | | | | | When a module doesn't have a __path__ attribute, trigger a dialog box rather than dumping a traceback to the console. | ||||
* | Get rid of 1.5.2 compatibility hack. :-) | Guido van Rossum | 2002-12-03 | 1 | -8/+0 |
| | |||||
* | Clarify the meaning of "requires Python 1.5.2". | Raymond Hettinger | 2002-11-08 | 1 | -3/+4 |
| | |||||
* | Add --check-tkinter to setup.py. Install IDLE. Fixes #634078. | Martin v. Löwis | 2002-11-06 | 1 | -5/+24 |
| | |||||
* | Use column= rather than col=; with Tk 8.4 col= no longer works. | Guido van Rossum | 2002-11-06 | 1 | -3/+3 |
| | | | | [SF patch 634250 -- that was an IDLEFORK patch.] | ||||
* | Support sdist. | Martin v. Löwis | 2002-11-05 | 1 | -0/+4 |
| | |||||
* | Remove unnecessary imports | Neal Norwitz | 2002-09-12 | 1 | -4/+0 |
| | |||||
* | Remove unused local variables | Neal Norwitz | 2002-09-12 | 2 | -2/+0 |
| | |||||
* | Remove unnecessary imports | Neal Norwitz | 2002-09-12 | 7 | -10/+0 |
| | |||||
* | Apply diff2.txt from SF patch http://www.python.org/sf/572113 | Walter Dörwald | 2002-09-11 | 21 | -90/+65 |
| | | | | | | | | (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining. | ||||
* | Extended IDLE's open module menu item to handle hierarchical module names. | Raymond Hettinger | 2002-09-08 | 1 | -2/+15 |
| | | | | | | | Will look at doing something similar in import.c so that the effort won't have to be repeated elsewhere. Closes SF patch 600152. | ||||
* | Whitespace normalization. | Tim Peters | 2002-08-23 | 3 | -3/+3 |
| | |||||
* | Convert characters from the locale's encoding on output. | Martin v. Löwis | 2002-08-10 | 2 | -1/+15 |
| | | | | Reject characters outside the locale's encoding on input. | ||||
* | Massive changes from SF 589982 (tempfile.py rewrite, by Zack | Guido van Rossum | 2002-08-09 | 1 | -2/+4 |
| | | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones. | ||||
* | Patch #590913: PEP 263 support. | Martin v. Löwis | 2002-08-05 | 2 | -1/+188 |
| | |||||
* | Use ascii_letters to avoid UnicodeErrors. | Martin v. Löwis | 2002-08-05 | 1 | -1/+4 |
| | |||||
* | Get rid of _expand() altogether - the match object supports m.expand(). | Guido van Rossum | 2002-07-24 | 1 | -11/+2 |
| | |||||
* | The test for re.engine was misfiring because re.engine is no longer | Guido van Rossum | 2002-07-24 | 1 | -11/+4 |
| | | | | | | | | | defined and the default was "pre" instead of "sre". Give up on 1.5.2 compatibility, hardcode the sre solution. However, this XXX comment still applies, AFAIK: # XXX This code depends on internals of the regular expression # engine! There's no standard API to do a substitution when you # have already found the match. One should be added. | ||||
* | Add primitive printing support for Unix and Windows. | Guido van Rossum | 2002-06-10 | 5 | -0/+38 |
| | |||||
* | Use self.__class__ to instantiate a TreeNode item recursively, to | Guido van Rossum | 2002-05-27 | 1 | -1/+1 |
| | | | | allow subclassing. | ||||
* | Patch 543222. Disable script bindings in shell window. | Raymond Hettinger | 2002-05-21 | 3 | -0/+5 |
| | |||||
* | Patches 558535. The standard Windows binding for Edit Select All | Raymond Hettinger | 2002-05-21 | 1 | -1/+1 |
| | | | | is Control-A rather than Alt-A. | ||||
* | SF bug 546078: IDLE calltips cause application error. | Tim Peters | 2002-04-22 | 1 | -0/+6 |
| | | | | | | | | Assorted crashes on Windows and Linux when trying to display a very long calltip, most likely a Tk bug. Wormed around by clamping the calltip display to a maximum of 79 characters (why 79? why not ...). Bugfix candidate, for all Python releases. | ||||
* | Provisional fix for writefile() [SF bug # 541730]. | Guido van Rossum | 2002-04-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | The problem was that an exception can occur in the text.get() call or in the write() call, when the text buffer contains non-ASCII characters. This causes the previous contents of the file to be lost. The provisional fix is to call str(self.text.get(...)) *before* opening the file, so that if the exception occurs, we never open the file. Two orthogonal better solutions have to wait for policy decisions: 1. We could try to encode the data as Latin-1 or as UTF-8; but that would require IDLE to grow a notion of file encoding which requires more thought. 2. We could make backups before overwriting a file. This requires more thought because it needs to be fast and cross-platform and configurable. | ||||
* | Patch #540583: Open MS Help Docs if available. | Martin v. Löwis | 2002-04-14 | 1 | -3/+12 |
| | |||||
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 6 | -23/+23 |
| | |||||
* | use -kb on idle/Icons/minusnode.gif ("cvs up" kept checking it out all | Fredrik Lundh | 2002-03-18 | 1 | -0/+0 |
| | | | | the time...) | ||||
* | Fix by Edward K Ream to make breakpoints work on Windows: insert a | Guido van Rossum | 2002-02-25 | 1 | -0/+1 |
| | | | | missing call to self.canonic(). | ||||
* | Patch #520483: Make IDLE OutputWindow handle Unicode. | Martin v. Löwis | 2002-02-23 | 1 | -1/+1 |
| | | | | 2.2.1 candidate. | ||||
* | smart_backspace_event(): remove now-pointless int() call. | Tim Peters | 2002-01-23 | 1 | -1/+1 |
| | | | | Bugfix candidate: the current state of AutoIdent.py should be in 2.2.1. | ||||
* | Properly fix SF bug #507298 (Gregor Lingl): shellpython2.2 -Qnew smart | Guido van Rossum | 2002-01-23 | 2 | -3/+3 |
| | | | | | | | indent error Use // where int division is intended. (This breaks IDLE for use with previous Python versions -- I don't care.) | ||||
* | classifyws(): Fix a "/" to work under -Qnew (as well as without it). | Tim Peters | 2002-01-23 | 1 | -1/+1 |
| | | | | Bugfix candidate! | ||||
* | Update outdated text about how to fix the font. | Guido van Rossum | 2001-10-08 | 1 | -4/+5 |
| | |||||
* | Improve handling of docstrings. I had feared this was a case of | Tim Peters | 2001-09-16 | 1 | -5/+10 |
| | | | | | | introspection incompatibility, but in fact it's just that calltips always gave up on a docstring that started with a newline (but didn't realize they were giving up <wink>). | ||||
* | Finally fix SF bug #441172, using a variant of patch ##443626: | Guido van Rossum | 2001-08-11 | 1 | -0/+6 |
| | | | | | | canceling an edit operation would not revert the value of the field. The fix takes care to destroy the Entry object, as suggested in the patch. | ||||
* | Patch #422471: Install IDLE Help File | Martin v. Löwis | 2001-08-08 | 1 | -1/+1 |
| | |||||
* | Fix for SF bug #448835. | Guido van Rossum | 2001-08-07 | 1 | -2/+1 |
| | | | | | | | Fix this to work with the new (still undocumented) tabnanny API. I'm afraid Stephen will have to add this fix to the IDLE fork code base as well. | ||||
* | Oops, this file was apparently never added to the repository. Now it is. | Jack Jansen | 2001-08-06 | 1 | -0/+3 |
| | |||||
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 2 | -2/+2 |
| | |||||
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 1 | -1/+4 |
| | | | | | Move computation of sets of characters out of the body of the function that uses them. | ||||
* | Amazing. A very subtle change in policy in descr-branch actually | Guido van Rossum | 2001-07-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | found a bug here. Here's the deal: Class PyShell derives from class OutputWindow. Method PyShell.close() wants to invoke its parent method, but because PyShell long ago was inherited from class PyShellEditorWindow, it invokes PyShelEditorWindow.close(self). Now, class PyShellEditorWindow itself derives from class OutputWindow, and inherits the close() method from there without overriding it. Under the old rules, PyShellEditorWindow.close would return an unbound method restricted to the class that defined the implementation of close(), which was OutputWindow.close. Under the new rules, the unbound method is restricted to the class whose method was requested, that is PyShellEditorWindow, and this was correctly trapped as an error. | ||||
* | Taught IDLE's autoident parser that "yield" is a keyword that begins a | Tim Peters | 2001-06-19 | 1 | -0/+1 |
| | | | | | stmt. Along w/ the preceding change to keyword.py, making all this work w/ a future-stmt just looks harder and harder. | ||||
* | Make copy, cut and paste events case insensitive. Reported by Patrick | Guido van Rossum | 2001-06-12 | 1 | -3/+3 |
| | | | | | | K. O'Brien on idle-dev. (Should other bindings follow suit?) |