summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* r88840: Prepare for 2.5.6.v2.5.6Martin v. Löwis2011-05-282-1/+6
|
* r88824: Prepare for 2.5.6c1.v2.5.6c1Martin v. Löwis2011-05-282-1/+6
|
* Add tests for the urllib[2] vulnerability. Change to raise exceptions.guido@google.com2011-03-284-5/+45
|
* Add FTP to the allowed url schemes. Add Misc/NEWS.guido@google.com2011-03-242-4/+6
|
* Issue 22663: fix redirect vulnerability in urllib/urllib2.guido@google.com2011-03-242-2/+18
|
* Fix issue11442 - Add a charset parameter to the Content-type to avoid XSS ↵Senthil Kumaran2011-03-171-1/+3
| | | | | | attacks. Patch by Tom N. (Backported from py3k codeline).
* Add .hgeol file and fix newlines in the 2.5 branch.Georg Brandl2011-03-051-31/+31
|
* Prepare for 2.5.5.v2.5.5Martin v. Löwis2010-01-312-3/+8
|
* Prepare for 2.5.5c2.v2.5.5c2Martin v. Löwis2010-01-242-1/+6
|
* Prepare for 2.5.5c1.v2.5.5c1Martin v. Löwis2010-01-142-1/+6
|
* Issue #7403: logging: Fixed possible race condition in lock creation.Vinay Sajip2009-11-271-4/+4
|
* #6990: clear threading.local's key only after its thread state is removed:Philip Jenvey2009-09-291-1/+40
| | | | | | fixes local subclasses leaving old state around after a ref cycle GC which could be recycled by new locals (backported from r75123)
* Avoid EOFError being passed to the caller (restoring theLars Gustäbel2009-03-221-1/+4
| | | | old behavior).
* Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loopLars Gustäbel2009-03-222-6/+28
| | | | | | | | forever on incomplete input. That caused tarfile.open() to hang when used with mode 'r' or 'r:bz2' and a fileobj argument that contained no data or partial bzip2 compressed data. (backported from r70523)
* Prepare for 2.5.4.v2.5.4Martin v. Löwis2008-12-232-1/+6
|
* Revert patch for #1706039, as it can crash the interpreter.Martin v. Löwis2008-12-231-42/+0
|
* Backport of r67908:Martin v. Löwis2008-12-231-0/+2
| | | | | Added test case to ensure attempts to read from a file opened for writing fail.
* Prepare for 2.5.3.v2.5.3Martin v. Löwis2008-12-192-1/+6
|
* Prepare for 2.5.3c1.v2.5.3c1Martin v. Löwis2008-12-132-2/+2
|
* Issue #1706039: Support continued reading from a file even afterMartin v. Löwis2008-12-131-0/+42
| | | | EOF was hit.
* Issue #3767: Convert Tk object to string in tkColorChooser.Martin v. Löwis2008-12-131-5/+7
|
* Backport of r59654.Martin v. Löwis2008-12-131-1/+1
| | | | Issue #4342: Always convert Text.index result to string.
* Issue 3248: Allow placing ScrolledText in a PanedWindow.Martin v. Löwis2008-12-131-0/+3
|
* Backport of r66703:Martin v. Löwis2008-12-131-0/+6
| | | | | 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-131-0/+13
| | | | in struct's L format.
* Issue #4084: fix bug in handling of NaNs in Decimal.max, Decimal.min,Mark Dickinson2008-12-112-16/+33
| | | | 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-101-0/+14
| | | | propagating exceptions.
* Issue #4302: Minor corrections to smtplib. (Backport r60975)Hirokazu Yamamoto2008-12-101-2/+2
|
* Backported issue #4589 to Python 2.5.3: Propagated an exception thrown by aJeffrey Yasskin2008-12-101-0/+30
| | | | context manager's __exit__ method's result while it's being converted to bool.
* #4317: Fix an Array Bounds Read in imageop.rgb2rgb8.Amaury Forgeot d'Arc2008-11-181-1/+2
| | | | Backport of r67266
* backport r67246 from the trunkBenjamin Peterson2008-11-171-9/+50
|
* 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-031-11/+13
| | | | 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-031-0/+2
| | | | relative imports
* Issue #4176: Pickle would crash the interpreter when a __reduce__ functionAmaury Forgeot d'Arc2008-10-301-0/+23
| | | | | | | does not return an iterator for the 4th and 5th items. (sequence-like and mapping-like state) Backport of r67049.
* backport r66689: imageop could segfault due to poor argument validationBenjamin Peterson2008-09-301-7/+62
|
* Fix issue #3547 for MingW, update comments (backport from trunk).Thomas Heller2008-09-291-2/+3
|
* Backport of r66677: _lsprof crasher when a bad external timer is used duringBrett Cannon2008-09-291-2/+17
| | | | garbage collection of a Profiler object.
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-261-0/+16
| | | | | | | For example: "".count("xxxx", sys.maxint, 0) Backport of r66631.
* #3968: fix missing update() call in end_fill().Georg Brandl2008-09-261-0/+1
|
* #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-251-1/+34
| | | | statements #3936
* Fix issue #3547: ctypes is confused by bitfields of varying integer typesThomas Heller2008-09-241-0/+15
| | | | | | Reviewed by Fredrik Lundh and Skip Montanaro. Backport from trunk.
* backport r66496: integer overflow in _hashopenssl #3886Benjamin Peterson2008-09-181-2/+16
|
* Issue #3804: Added test for Issue #2222.Hirokazu Yamamoto2008-09-081-0/+7
| | | | Reviewed by Benjamin Peterson.
* Backport of r66275/r66274 from trunk/py3k. This is the last bit ofGregory P. Smith2008-09-071-2/+5
| | | | | | the fix for issue 874900 to fix the use of the threading module in a post-fork python process. A NEWS entry for this already exists with the previous Lib/threading commit for this bug.
* Issue #3762: platform.architecture() fails if python is lanched via its ↵Hirokazu Yamamoto2008-09-041-1/+1
| | | | | | symbolic link. Reviewed Amaury Forgeot d'Arc (Backport of r66213)
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-011-0/+5
| | | | | | a unicode argument. Backport of r66119