summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
...
* Tkinter rename, step 2: fix imports and add stub modules.Georg Brandl2008-05-1637-68/+70
|
* Changed references to the reprlib module to use its new name.Alexandre Vassalotti2008-05-162-3/+3
|
* Updated import statements to use the new `configparser` module name.Alexandre Vassalotti2008-05-141-1/+1
| | | | | | | | Updated the documentation to use the new name. Revert addition of the stub entry for the old name. Georg, I am reverting your changes since this commit should propagate to py3k.
* Updated all import statements to use the new socketserver module name.Alexandre Vassalotti2008-05-121-7/+7
| | | | | Renamed socketserver module in its own documentation. Renamed documentation references.
* Added stub for the Queue module to be renamed in 3.0.Alexandre Vassalotti2008-05-112-6/+6
| | | | Use the 3.0 module name to avoid spurious warnings.
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-111-3/+3
| | | | | | Renamed copy_reg to copyreg in the standard library, to avoid spurious warnings and ease later merging to py3k branch. Public documentation remains intact.
* Bump to 2.6a3v2.6a3Barry Warsaw2008-05-081-1/+1
|
* Autocompletion of filenames now support alternate separators, e.g. theKurt B. Kaiser2008-04-272-3/+10
| | | | '/' char on Windows. Patch 2061 Tal Einat.
* Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.Kurt B. Kaiser2008-04-272-7/+14
|
* Home / Control-A toggles between left margin and end of leading whiteKurt B. Kaiser2008-04-273-11/+48
| | | | | | | | space. Patch 1196903 Jeff Shute. M idlelib/PyShell.py M idlelib/EditorWindow.py M idlelib/NEWS.txt
* Issue 2665: On Windows, sys.stderr does not contain a valid file when ↵Amaury Forgeot d'Arc2008-04-212-4/+24
| | | | | | | | | | running without a console. It seems to work, but will fail at the first flush. This causes IDLE to crash when too many warnings are printed. Will backport.
* Updating for 2.6a2v2.6a2Barry Warsaw2008-04-031-1/+1
|
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-292-4/+3
| | | | Thanks to Wummel for the patch
* Give IDLE a release dateBarry Warsaw2008-03-011-1/+1
|
* bump idle version numberBarry Warsaw2008-03-011-1/+1
|
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-237-7/+2
|
* Configured selection highlighting colors were ignored; updating highlightingKurt B. Kaiser2008-02-153-36/+30
| | | | | in the config dialog would cause non-Python files to be colored as if they were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
* ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat.Kurt B. Kaiser2008-02-152-6/+9
|
* Bring NEWS.txt up to date from check-in msgs.Kurt B. Kaiser2008-02-141-0/+7
|
* what??! Correct r60225.Kurt B. Kaiser2008-02-121-1/+1
|
* There was an error on exit if no sys.exitfunc was defined. Issue 1647.Kurt B. Kaiser2008-01-232-1/+6
|
* Could not open files in .idlerc directory if latter was hidden on Windows.Kurt B. Kaiser2008-01-232-2/+10
| | | | Issue 1743, Issue 1862.
* Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.Kurt B. Kaiser2007-12-282-20/+24
|
* Fixed #1649: IDLE error: dictionary changed size during iterationChristian Heimes2007-12-181-1/+1
|
* IDLE_tabbedpages.071101.patch Tal EinatKurt B. Kaiser2007-12-112-148/+47
| | | | Cosmetic changes, one bug. Remove tabpage.py, replaced by tabbedpages.py
* format_paragraph_event wasn't returning 'break'Kurt B. Kaiser2007-12-111-0/+1
|
* check in Tal Einat's update to tabpage.pyKurt B. Kaiser2007-10-303-9/+489
| | | | | | | | Patch 1612746 M configDialog.py M NEWS.txt AM tabbedpages.py
* Add confirmation dialog before printing. Patch 1717170 Tal Einat.Kurt B. Kaiser2007-10-282-1/+13
|
* 1. Add comments to provide top-level documentation.Kurt B. Kaiser2007-10-261-30/+68
| | | | | 2. Refactor to use more descriptive names. 3. Enhance tests in main().
* Correct an ancient bug in an unused path by removing that path: register() isKurt B. Kaiser2007-10-251-5/+1
| | | | now idempotent.
* show paste if > 80 columns. Patch 1659326 Tal Einat.Kurt B. Kaiser2007-10-102-0/+3
|
* Allow cursor color change w/o restart. Patch 1725576 Tal Einat.Kurt B. Kaiser2007-10-102-0/+5
|
* Allow interrupt only when executing user code in subprocessKurt B. Kaiser2007-10-092-3/+13
| | | | Patch 1225 Tal Einat modified from IDLE-Spoon.
* configDialog cleanup. Patch 1730217 Tal Einat.Kurt B. Kaiser2007-10-042-40/+44
|
* textView cleanup. Patch 1718043 Tal Einat.Kurt B. Kaiser2007-10-044-50/+54
| | | | | | | M idlelib/EditorWindow.py M idlelib/aboutDialog.py M idlelib/textView.py M idlelib/NEWS.txt
* Clean up EditorWindow close.Kurt B. Kaiser2007-10-043-14/+19
|
* Remove unused theme that was causing a fault in p3k.Kurt B. Kaiser2007-10-041-1/+0
|
* Assume that the user knows when he wants to end the line; don't insertKurt B. Kaiser2007-10-042-15/+4
| | | | something he didn't select or complete.
* Patch 1693258: Fix for duplicate "preferences" menu-OS XRonald Oussoren2007-07-091-18/+31
|
* Patch #1672481: fix bug in idlelib.MultiCall.Georg Brandl2007-03-061-0/+2
|
* Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;Kurt B. Kaiser2007-02-083-21/+103
| | | | | | mouse and cursor selection in ACWindow implemented; double Tab inserts current selection and closes ACW (similar to double-click and Return); scroll wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
* Handle AttributeError during calltip lookupKurt B. Kaiser2007-02-071-1/+1
|
* [ 1621265 ] Auto-completion list placementKurt B. Kaiser2007-02-072-6/+18
| | | | | Move AC window below input line unless not enough space, then put it above. Patch: Tal Einat
* narrow exception per [ 1540849 ] except too broadKurt B. Kaiser2007-02-061-1/+1
|
* Updated patch (CodeContext.061217.patch) toKurt B. Kaiser2007-02-061-53/+19
| | | | | [ 1362975 ] CodeContext - Improved text indentation Tal Einat 16Dec06
* Clean up ModifiedInterpreter.runcode() structureKurt B. Kaiser2007-02-061-27/+29
|
* 1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)Kurt B. Kaiser2007-02-052-36/+48
| | | | | | Suggested solution by Christos Georgiou, Bug 791968. 2. Clean up tests, were not failing when they should have been. 4. Remove some camelcase and an unneeded try/except block.
* Add 'raw' support to configHandler. Patch 1650174 Tal Einat.Kurt B. Kaiser2007-02-052-12/+13
|
* Whitespace normalization.Tim Peters2007-01-301-2/+2
|
* - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092).Matthias Klose2007-01-111-1/+1
|