summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Redo tag.v2.5.2Martin v. Löwis2008-02-211-0/+1
|
* Update copyright years to 2008. Update README to 2.5.2.Martin v. Löwis2008-02-217-9/+9
|
* Tagging for release of Python 2.5.2Martin v. Löwis2008-02-211-0/+1
|
* Prepare for 2.5.2.Martin v. Löwis2008-02-215-6/+11
|
* A quick fix that removes a spurious unittest failure when usersRonald Oussoren2008-02-191-0/+10
| | | | | | | upgrade their python2.5 install and then run Python's test suite. This is needed because one of the test files for the decimal module changed it name (see issue 2114) and OSX doesn't feature a full package manager.
* Fix linkAndrew M. Kuchling2008-02-181-1/+1
|
* Bug #2137: Remove test_struct.test_crasher, which was meaningfulMartin v. Löwis2008-02-182-4/+3
| | | | only on 32-bit systems.
* Revert 60793 for test_array; on a 64-bit system,Martin v. Löwis2008-02-152-17/+1
| | | | MemoryError was not guaranteed.
* Fix deallocation of array objects when allocation ran out of memory.Martin v. Löwis2008-02-152-0/+12
|
* mksourcepkg is not getting the tag right by itself, so recording it in theFred Drake2008-02-141-0/+1
| | | | Makefile explicitly for now
* reverting; wrong tagFred Drake2008-02-141-0/+1
|
* mksourcepkg is not getting the tag right by itself, so recording it in theFred Drake2008-02-141-0/+1
| | | | Makefile explicitly for now
* Tagging for release of Python 2.5.2c1Martin v. Löwis2008-02-141-0/+1
|
* Correct 2.5.2c1 uuid. Add IDLE release date.v2.5.2c1Martin v. Löwis2008-02-142-2/+2
|
* Preparing for 2.5.2c1.Martin v. Löwis2008-02-147-7/+9
|
* Added checks for integer overflows, contributed by Google. Some areMartin v. Löwis2008-02-1425-59/+464
| | | | | only available if asserts are left in the code, in cases where they can't be triggered from Python code.
* bump: IDLE 1.2.2Kurt B. Kaiser2008-02-141-1/+1
|
* There was an error on exit if no sys.exitfunc was defined. Issue 1647.Kurt B. Kaiser2008-02-142-1/+7
| | | | Backport r60227
* Could not open files in .idlerc directory if latter was hidden on Windows.Kurt B. Kaiser2008-02-142-1/+9
| | | | | Issue 1743, Issue 1862. Backport r60225, r60745
* format_paragraph_event wasn't returning 'break'Kurt B. Kaiser2008-02-142-0/+3
| | | | Backport r59463
* Assume that the user knows when he wants to end the line; don't insertKurt B. Kaiser2008-02-142-15/+4
| | | | | something he didn't select or complete. Backport r58306
* Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;Kurt B. Kaiser2008-02-143-21/+104
| | | | | | | 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. Backport of r53679
* 1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112.Kurt B. Kaiser2008-02-142-2/+17
| | | | | 2. Duplicate some old entries from Python's NEWS to IDLE's NEWS.txt Backport of r53042
* Some syntax errors were being caught by tokenize during the tabnannyKurt B. Kaiser2008-02-142-6/+8
| | | | | check, resulting in obscure error messages. Do the syntax check first. Bug 1562716, 1562719 Backport of r52083
* Bring NEWS.txt up to date.Kurt B. Kaiser2008-02-141-0/+18
|
* Back port of r60765 (fix --enable-universalsdk doc typo).Brett Cannon2008-02-132-3/+3
|
* In the recursive debug command, pass Pdb arguments (completekey, stdin, stdout)Guido van Rossum2008-02-131-1/+1
| | | | to the recursive Pdb instance.
* Patch #1966: Break infinite loop in httplib when the serversMartin v. Löwis2008-02-122-0/+7
| | | | implements the chunked encoding incorrectly.
* Backport of r60743:Martin v. Löwis2008-02-122-9/+11
| | | | Patch #1736: Fix file name handling of _msi.FCICreate.
* Backport the nts() function from the trunk. This fixes problems withLars Gustäbel2008-02-114-9/+26
| | | | | the xstar format that puts extra fields inside the space that POSIX has reserved for the prefix field.
* Backport relevant part of issue 2021 fix (r60695): Support with statement ↵Nick Coghlan2008-02-113-4/+32
| | | | properly in tempfile.NamedTemporaryFile
* Backport test_resource fix from trunk to stop it crashing on UbuntuNick Coghlan2008-02-111-14/+19
|
* issue 2045: Infinite recursion when printing a subclass of defaultdict,Amaury Forgeot d'Arc2008-02-083-1/+37
| | | | | | if default_factory is set to a bound method. Backport of r60663.
* Backport r60653:Walter Dörwald2008-02-071-2/+2
| | | | Fix typo in docstring for Calendar.itermonthdays().
* Backport LaTex version of r60651:Walter Dörwald2008-02-071-2/+2
| | | | | Fix documentation for Calendar.iterweekdays(): firstweekday is a property. Fixes second part of #2018.
* Backport LaTeX version of r60649:Walter Dörwald2008-02-071-5/+5
| | | | | | Clarify that the output of TextCalendar.formatmonth() and TextCalendar.formatyear() for custom instances won't be influenced by calls to the module global setfirstweekday() function. Fixes #2018.
* Fix the way methods are created for the _ctypes.COMError exceptionThomas Heller2008-02-063-9/+36
| | | | type; this fix is already in the trunk.
* Remove month parameter from Calendar.yeardatescalendar(),Walter Dörwald2008-02-061-3/+3
| | | | | Calendar.yeardays2calendar() and Calendar.yeardayscalendar() as the methods don't have such a parameter. Fixes issue #2017. (2.5 backport of r60618)
* Backport doc fixes from 2.6. These are all things that were alreadyGuido van Rossum2008-02-051-4/+12
| | | | supported but weren't in the docs, like conditional backreferences.
* In the experimental 'Scanner' feature, the group count was set wrong.Guido van Rossum2008-02-051-1/+1
|
* Issue #1507247, #2004: Use mode 0700 for temporary directories andLars Gustäbel2008-02-052-22/+13
| | | | | | default permissions for missing directories. (backport from r53526, r60588)
* No need to emit co_lnotab item when both offsets are zeros.Amaury Forgeot d'Arc2008-02-042-0/+12
| | | | | | r60579 broke a test test_compile, which seems to test an "implementation detail" IMO. Also test that this correction does not impact the debugger.
* Turn off a debugging flag.Brett Cannon2008-02-041-1/+1
|
* backport of r60575 (issue #1750076): Debugger did not step on every ↵Amaury Forgeot d'Arc2008-02-043-17/+67
| | | | | | | | | | | | | | iteration of a while statement. The mapping between bytecode offsets and source lines (lnotab) did not contain an entry for the beginning of the loop. Now it does, and the lnotab can be a bit larger: in particular, several statements on the same line generate several entries. However, this does not bother the settrace function, which will trigger only one 'line' event. The lnotab seems to be exactly the same as with python2.4.
* Backport r59862 (issue #712900): make long regexp matches interruptableGuido van Rossum2008-02-042-0/+10
| | | | by signals.
* Backport r60537: have order of CPPFLAGS and LDFLAGS be honored.Brett Cannon2008-02-032-1/+4
|
* Disable linking against BerkeleyDB 4.6 by default as it has proven toGregory P. Smith2008-02-031-3/+6
| | | | be a buggy release on many platforms.
* backport r60544 from trunk:Gregory P. Smith2008-02-032-2/+9
| | | | | | | | Merge this fix from the pybsddb tree: r293 | jcea | 2008-01-31 01:08:19 -0800 (Thu, 31 Jan 2008) | 4 lines Solved memory leak when using cursors with databases without environment.
* Backport 60542:Andrew MacIntyre2008-02-031-2/+2
| | | | | The wrapper function is supposed to be for spawnvpe() so that's what we should call [this wrapper only available on OS/2].
* Bug #1234: Fixed semaphore errors on AIX 5.2Christian Heimes2008-01-304-14/+29
|