summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* 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
|\ \ | |/
| * Issue12510: Attempting to get invalid tooltip no longer closes Idle.Terry Jan Reedy2012-05-281-3/+6
| | | | | | | | Original patch by Roger Serwy.
* | Merge with 3.2 #10635 whitespaceTerry Jan Reedy2012-05-271-1/+1
|\ \ | |/
| * #10365 Trim trailing whitespaceTerry Jan Reedy2012-05-271-1/+1
| |
* | Merge with 3.2Terry Jan Reedy2012-05-272-6/+14
|\ \ | |/ | | | | | | Issue #10365: File open dialog now works instead of crashing even when parent window is closed. Patch by Roger Serwy.
| * Issue #10365: File open dialog now works instead of crashingTerry Jan Reedy2012-05-272-6/+14
| | | | | | | | even when parent window is closed. Patch by Roger Serwy.
* | Merge Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-261-2/+4
|\ \ | |/ | | | | Patch by Roger Serwy.
| * Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-261-2/+4
| | | | | | | | Patch by Roger Serwy.
| * Merge 3.2.3 release clone.Georg Brandl2012-04-111-1/+1
| |\
| | * Bump to 3.2.3 final.Georg Brandl2012-04-101-1/+1
| | |
* | | Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-3/+3
| | |
* | | Issue #13959: Deprecate imp.get_suffixes() for new attributes onBrett Cannon2012-05-111-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense.
* | | Include micro version even if it is 0.Martin v. Löwis2012-05-011-2/+1
| | |
* | | Bump to 3.3.0a3.Georg Brandl2012-05-011-1/+1
| | |
* | | Issue #14428: Use the new time.perf_counter() and time.process_time() functionsVictor Stinner2012-04-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replace "time.clock on windows, or time.time" with time.perf_counter() * profile module: only use time.process_time() instead of trying different functions providing the process time * timeit module: use time.perf_counter() by default, time.time() and time.clock() can still be used using --time and --clock options * pybench program: use time.perf_counter() by default, add support for the new time.process_time() and time.perf_counter() functions, but stay backward compatible. Use also time.get_clock_info() to display information of the timer.
* | | IDLE was relying on implicit relative imports which have gone away inBrett Cannon2012-04-151-3/+7
| | | | | | | | | | | | | | | Python 3.3 thanks to importlib finishing the work in PEP 328 that accidently got carried forward.
* | | Issue #8515: Set __file__ when run file in IDLE.Andrew Svetlov2012-04-052-6/+9
| | |
* | | Merge from 3.2Andrew Svetlov2012-04-051-2/+2
|\ \ \ | |/ /
| * | Issue #14496: Fix wrong name in idlelib/tabbedpages.py.Andrew Svetlov2012-04-051-2/+2
| | | | | | | | | | | | Patch by Popa Claudiu.
* | | Bump to 3.3.0a2.v3.3.0a2Georg Brandl2012-04-011-1/+1
| | |
* | | Merge from 3.2Andrew Svetlov2012-03-311-2/+4
|\ \ \ | |/ /
| * | update NEWS as Terry Reedy proposedAndrew Svetlov2012-03-311-2/+4
| | |
* | | Merge with 3.2Andrew Svetlov2012-03-292-1/+4
|\ \ \ | |/ /
| * | Issue #14409: IDLE doesn't not execute commands from shell with default ↵Andrew Svetlov2012-03-292-1/+4
| | | | | | | | | | | | | | | | | | keybinding for <Return>. Patch by Roger Serwy.
* | | Fix typoÉric Araujo2012-03-271-1/+1
| | |
* | | Update missed idlelib/NEWS.txtAndrew Svetlov2012-03-261-1/+3
| | |
* | | IDLE can be launched as python -m ildelibAndrew Svetlov2012-03-261-0/+9
| | |