summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 3.3.0rc1.v3.3.0rc1Georg Brandl2012-08-251-1/+1
|
* Issue #15678: Fix menu customization for IDLE started from OS XNed Deily2012-08-171-3/+13
| | | | | | | | | | command lines. It was broken as a side effect of the changes to pythonw.c in b79d276041a8 for #15307. Since sys.executable no longer includes 'Python.app' in the path name, test for a framework build instead. This should give the previous behavior in nearly all cases. Whether the previous behavior is sensible is left as an issue for later releases. IDLE.app behavior was not affected as it does its own manipulation of sys.executable.
* Bump to 3.3b2.v3.3.0b2Georg Brandl2012-08-111-1/+1
|
* Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵Andrew Svetlov2012-08-041-5/+26
|\ | | | | | | | | | | ended with '\'. Patch by Roger Serwy.
| * Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵Andrew Svetlov2012-08-041-5/+26
| | | | | | | | | | | | ended with '\'. Patch by Roger Serwy.
* | Issue #9803: Don't close IDLE on saving if breakpoint is open.Andrew Svetlov2012-07-311-2/+2
|\ \ | |/ | | | | Patch by Roger Serwy.
| * Issue #9803: Don't close IDLE on saving if breakpoint is open.Andrew Svetlov2012-07-311-2/+2
| | | | | | | | Patch by Roger Serwy.
* | Issue #14018: mergeNed Deily2012-07-302-6/+13
|\ \ | |/
| * Issue #14018: Update the OS X IDLE Tcl/Tk warning check to includeNed Deily2012-07-302-6/+14
| | | | | | | | | | the Apple-supplied Tck/Tk versions shipped with OS X 10.7 and 10.8. They are not as buggy as the 10.6 version but can still easily crash.
* | merge 3.2Martin v. Löwis2012-07-253-3/+7
|\ \ | |/
| * Issue #7163: Propagate return value of sys.stdout.write.Martin v. Löwis2012-07-253-3/+7
| | | | | | | | Patch by Roger Serwy.
* | merge 3.2Martin v. Löwis2012-07-253-5/+38
|\ \ | |/
| * Issue #15318: Prevent writing to sys.stdin.Martin v. Löwis2012-07-253-5/+38
| | | | | | | | Patch by Roger Serwy and myself.
* | Issue #4832: Modify IDLE to save files with .py extension byNed Deily2012-07-102-2/+9
| | | | | | | | default on Windows and OS X as it already does with X11 Tk.
* | merge 3.2Martin v. Löwis2012-07-111-2/+2
|\ \ | |/
| * Use _RPCFile.write properly.Martin v. Löwis2012-07-111-2/+2
| |
* | merge 3.2Martin v. Löwis2012-07-111-2/+8
|\ \ | |/
| * Don't use TextIOBase implementations in _RPCFile.Martin v. Löwis2012-07-111-2/+8
| |
* | merge 3.2Martin v. Löwis2012-07-112-2/+2
|\ \ | |/
| * Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.Martin v. Löwis2012-07-112-2/+2
| |
* | merge 3.2Martin v. Löwis2012-07-091-1/+1
|\ \ | |/
| * normalize whitespaceMartin v. Löwis2012-07-091-1/+1
| |
* | merge 3.2Martin v. Löwis2012-07-093-3/+25
|\ \ | |/
| * Issue #13532: Check that arguments to sys.stdout.write are strings.Martin v. Löwis2012-07-093-3/+25
| |
* | Merge with 3.2 Issue 12510Terry Jan Reedy2012-07-091-14/+20
|\ \ | |/
| * Issue 12510: Delete actual first param name for all methods; revise tests.Terry Jan Reedy2012-07-091-14/+20
| |
* | Bump version to 3.3.0b1.v3.3.0b1Georg Brandl2012-06-261-1/+1
| |
* | merge 3.2Martin v. Löwis2012-06-141-1/+1
|\ \ | |/
| * Issue #14937: Fix typo. Patch by Roger Serwy.Martin v. Löwis2012-06-141-1/+1
| |
* | Merge from 3.2, #12510Terry Jan Reedy2012-06-082-70/+131
|\ \ | |/
| * Issue #12510: Revise and triple # of calltip tests, with an eye to unittestTerry Jan Reedy2012-06-072-70/+131
| | | | | | | | | | | | use. Make the get_entity 'method' a module function as it did not use 'self'. Delete buggy _find_constructor function that is not needed, at least in 3.x. Revise get_argspec so all tests pass. Add and fix NEWS entries.
* | merge 3.2Martin v. Löwis2012-06-033-3/+3
|\ \ | |/
| * PEP 3131: support non-ASCII characters in auto-completion of identifiers.Martin v. Löwis2012-06-032-2/+2
| |
| * Do not try to insert control characters.Martin v. Löwis2012-06-031-1/+1
| |
* | Drop unused constant.Martin v. Löwis2012-06-031-3/+0
| |
* | Merge 3.2: issue #14937.Martin v. Löwis2012-06-033-3/+22
|\ \ | |/
| * Issue #14937: Perform auto-completion of filenames in strings even for ↵Martin v. Löwis2012-06-033-2/+24
| | | | | | | | non-ASCII filenames.
* | Merge with 3.2 #12510Terry Jan Reedy2012-06-031-15/+17
|\ \ | |/
| * Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive nameTerry Jan Reedy2012-06-031-15/+17
| | | | | | | | | | | | 'name' to 'expression' as the latter is what the string actually represents. The bug in this issue was only catching NameError and AttributeError when evaluating an expression that was not necessarily a name.
* | Merge with 3.2 #10365Terry Jan Reedy2012-06-031-16/+13
|\ \ | |/
| * Issue 10365: Add and replace comments; condense defaulted attribute access.Terry Jan Reedy2012-06-031-16/+13
| | | | | | | | Code patch by Roger Serwy.
* | Issue #14962: mergeNed Deily2012-05-311-0/+5
|\ \ | |/
| * Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-311-0/+5
| | | | | | | | options. Patch by Roger Serwy.
* | Bump version to 3.3.0a4.v3.3.0a4Georg Brandl2012-05-301-1/+1
| |
* | Issue #14958: Change IDLE systax highlighting to recognize all string andNed Deily2012-05-301-4/+5
| | | | | | | | byte literals supported in Python 3.3.
* | Issue #10997: merge from 3.2Ned Deily2012-05-291-1/+1
|\ \ | |/
| * Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-291-1/+1
| |
* | Merge 3.2 #14929Terry Jan Reedy2012-05-281-1/+1
|\ \ | |/
| * Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.Terry Jan Reedy2012-05-281-1/+1
| | | | | | | | Patch by Roger Serwy.
* | Merge 3.2 closes #12510Terry Jan Reedy2012-05-281-3/+6
|\ \ | |/