summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Prepare for 2.5.3.v2.5.3Martin v. Löwis2008-12-196-8/+13
|
* Build against system Tcl framework.Martin v. Löwis2008-12-192-7/+1
|
* In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.Martin v. Löwis2008-12-172-4/+9
|
* Add 2.5.3 final section.Martin v. Löwis2008-12-131-0/+6
|
* Tagging for release of Python 2.5.3c1Martin v. Löwis2008-12-131-0/+1
|
* Prepare for 2.5.3c1.v2.5.3c1Martin v. Löwis2008-12-136-10/+10
|
* Add 2.5.3.Martin v. Löwis2008-12-131-0/+2
|
* Issue #1706039: Support continued reading from a file even afterMartin v. Löwis2008-12-133-17/+70
| | | | EOF was hit.
* Issue #1040026: Fix os.times result on systems where HZ is incorrect.Martin v. Löwis2008-12-132-9/+18
|
* Issue #3767: Convert Tk object to string in tkColorChooser.Martin v. Löwis2008-12-132-5/+9
|
* Backport of r59654.Martin v. Löwis2008-12-132-1/+3
| | | | Issue #4342: Always convert Text.index result to string.
* Backport of r64212Martin v. Löwis2008-12-135-0/+39
| | | | Issue #1683: prevent forking from interfering in threading storage.
* Issue 3248: Allow placing ScrolledText in a PanedWindow.Martin v. Löwis2008-12-132-0/+5
|
* Backport of r66703:Martin v. Löwis2008-12-132-0/+9
| | | | | Issue #3863: Disabled a unit test of fork being called from a thread when running on platforms known to exhibit OS bugs when attempting that.
* Issue #4228: Pack negative values the same way as 2.4Martin v. Löwis2008-12-133-6/+21
| | | | in struct's L format.
* Issue #4368: Don't define _XOPEN_SOURCE on FreeBSD 4.*.Martin v. Löwis2008-12-133-20/+14
|
* Issue #4446: Add platforms keyword.Martin v. Löwis2008-12-131-0/+2
|
* Issue #4084: fix bug in handling of NaNs in Decimal.max, Decimal.min,Mark Dickinson2008-12-113-16/+37
| | | | Decimal.max_mag and Decimal.min_mag.
* #4259: update the URL pattern for module documentationAndrew M. Kuchling2008-12-111-2/+3
|
* Backport issue 4597 to python 2.5.3: Fixed several opcodes that weren't alwaysJeffrey Yasskin2008-12-103-3/+31
| | | | propagating exceptions.
* Issue #4302: Minor corrections to smtplib. (Backport r60975)Hirokazu Yamamoto2008-12-102-2/+4
|
* Backported issue #4589 to Python 2.5.3: Propagated an exception thrown by aJeffrey Yasskin2008-12-103-3/+42
| | | | context manager's __exit__ method's result while it's being converted to bool.
* - Tools/faqwiz/move-faqwiz.sh: Fix unsecure use of temporary filesMatthias Klose2008-11-301-3/+9
|
* backport r67373: checking for errors from NEW_IDENTIFIERBenjamin Peterson2008-11-251-25/+65
|
* #4317: Fix an Array Bounds Read in imageop.rgb2rgb8.Amaury Forgeot d'Arc2008-11-183-2/+5
| | | | Backport of r67266
* backport r67246 from the trunkBenjamin Peterson2008-11-173-12/+88
|
* regenerate configureBenjamin Peterson2008-11-161-2/+2
|
* #4316: configure.in markup fix (backport from r67227).Georg Brandl2008-11-161-1/+1
|
* Backport r66813: per Greg Ward, optparse is no longer being externally ↵Andrew M. Kuchling2008-11-141-10/+2
| | | | maintained.
* Backport r66804: #1415508 from Rocky Bernstein: add docstrings for ↵Andrew M. Kuchling2008-11-141-0/+10
| | | | enable_interspersed_args(), disable_interspersed_args()
* Issue #3774: Fixed an error when create a Tkinter menu item without commandHirokazu Yamamoto2008-11-032-11/+16
| | | | and then remove it. Written by Guilherme Polo (gpolo). Backport of r67082.
* backport r67077 from the trunk: parser module now correctly validates ↵Benjamin Peterson2008-11-034-2/+7
| | | | relative imports
* Issue #4176: Pickle would crash the interpreter when a __reduce__ functionAmaury Forgeot d'Arc2008-10-303-26/+59
| | | | | | | does not return an iterator for the 4th and 5th items. (sequence-like and mapping-like state) Backport of r67049.
* Modify ctypes types with 'official' functions. Backport from trunk,Thomas Heller2008-10-182-1/+4
| | | | snv rev 59943 and 59946.
* backport a fix for setup.py's -RBenjamin Peterson2008-10-161-1/+2
|
* Issue #4046: Backport of issue #3312's patch: fixes two crashes in the sqlite3Gerhard Häring2008-10-083-3/+16
| | | | module.
* Fix a refleak introduced by r66678 (backport of r66700).Brett Cannon2008-09-301-10/+1
|
* backport r66689: imageop could segfault due to poor argument validationBenjamin Peterson2008-09-303-167/+174
|
* Fix issue #3547 for MingW, update comments (backport from trunk).Thomas Heller2008-09-292-5/+8
|
* Backport of r66677: _lsprof crasher when a bad external timer is used duringBrett Cannon2008-09-293-3/+30
| | | | garbage collection of a Profiler object.
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-264-8/+25
| | | | | | | For example: "".count("xxxx", sys.maxint, 0) Backport of r66631.
* #3968: fix missing update() call in end_fill().Georg Brandl2008-09-262-0/+3
|
* #3969: fix typo in turtle.py.Georg Brandl2008-09-261-1/+1
|
* make sure to give a 'as' and 'with' parser warning even after import ↵Benjamin Peterson2008-09-253-13/+52
| | | | statements #3936
* Fix issue #3547: ctypes is confused by bitfields of varying integer typesThomas Heller2008-09-243-1/+19
| | | | | | Reviewed by Fredrik Lundh and Skip Montanaro. Backport from trunk.
* Backport r66141 from trunk:Gregory P. Smith2008-09-222-5/+8
| | | | | - Issue #3678: Correctly pass LDFLAGS and LDLAST to the linker on shared library targets in the Makefile.
* backport r66496: integer overflow in _hashopenssl #3886Benjamin Peterson2008-09-183-11/+61
|
* Issue #3804: Added test for Issue #2222.Hirokazu Yamamoto2008-09-081-0/+7
| | | | Reviewed by Benjamin Peterson.
* reran autoconfGregory P. Smith2008-09-071-2/+2
|
* backport r66295 from trunk (small fix to the previous backport)Gregory P. Smith2008-09-071-1/+1
|