summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #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
|
* rerun autoconf after r66288, add the Misc/NEWS entry.Gregory P. Smith2008-09-072-97/+37
|
* backport r66179 and r66283 from trunk:Gregory P. Smith2008-09-072-11/+32
| | | | | | - Issue #1204: The configure script now tests for additional libraries that may be required when linking against readline. This fixes issues with x86_64 builds on some platforms (a few Linux flavors and OpenBSD).
* 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.
* Add NEWSHirokazu Yamamoto2008-09-041-0/+3
|
* 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-013-1/+9
| | | | | | a unicode argument. Backport of r66119
* backport r66093 from trunk.Gregory P. Smith2008-08-311-1/+1
| | | | | issue3715: docstring representation of hex escaped string needs to be double escaped.
* let Windows bots pass on test_threadingBenjamin Peterson2008-08-231-1/+2
|
* Issue #1342811: Fixed broken patch.Robert Schuppenies2008-08-221-5/+7
| | | | Backport from trunk r65971.
* Reverted r65902. See ↵Hirokazu Yamamoto2008-08-201-7/+3
| | | | http://mail.python.org/pipermail/python-checkins/2008-August/073116.html
* News for the imageop/rgbimg changes.Guido van Rossum2008-08-201-0/+3
|
* Backport r65900: fixed get_file_system in test_os.py ('path' is unicode on ↵Hirokazu Yamamoto2008-08-201-5/+8
| | | | py3k and ansi on trunk)
* Issue 1179: [CVE-2007-4965] Integer overflow in imageop module.Guido van Rossum2008-08-192-12/+73
| | | | Also fixes rgbimg module (just before it is removed from 2.6).
* issue #3554: ctypes.string_at and ctypes.wstring_at must use theThomas Heller2008-08-192-2/+6
| | | | | pythonapi calling convention so that the GIL is held and error return values are checked.
* Issue #2234: distutils failed with mingw binutils 2.18.50.20080109.Amaury Forgeot d'Arc2008-08-182-4/+8
| | | | | | | Be less strict when parsing these version numbers, they don't necessarily follow the python numbering scheme. Backport of r65834
* Backport of r64767 from trunkGregory P. Smith2008-08-173-0/+16
| | | | | | Fixes Issue #3309: Fix bz2.BZFile iterator to release its internal lock properly when raising an exception due to the bz2file being closed. Prevents a deadlock.
* Backport of r65032 from trunkGregory P. Smith2008-08-174-1/+136
| | | | | | Fixes Issue #874900: after an os.fork() call the threading module state is cleaned up in the child process to prevent deadlock and report proper thread counts if the new process uses the threading module.
* I forgot to update NEWS.Hirokazu Yamamoto2008-08-171-0/+3
|
* Backport r65745: Issue #2222: Fixed reference leak when occuredHirokazu Yamamoto2008-08-171-28/+26
| | | | os.rename() fails unicode conversion on 2nd parameter. (windows only)
* Issue #2065: VC6 related fix.Hirokazu Yamamoto2008-08-147-9/+134
| | | | | | | | | | | | | | | | | | | | - PC/VC6/_bsddb.dsp: removed '/nodefaultlib:"msvcrt"' to fix linker error. - PC/VC6/_msi.dsp: added new module support. - PC/VC6/_sqlite3.dsp: /D "MODULE_NAME=\"sqlite3\"" caused extra leading space like #define MODULE_NAME " sqlite3" so uses /D MODULE_NAME=\"sqlite3\" instead. - PC/VC6/python.dsp: changed stack size to 2MB to avoid stack overflow on some tests.
* #3205: bz2 iterator fails silently on MemoryErrorGeorg Brandl2008-08-122-0/+4
| | | | (backport from r65609)
* Backport r60148 and r65481: sanity checks to avoid infinite loops.Georg Brandl2008-08-122-1/+25
|
* #3134: shutil referenced undefined WindowsError symbolGeorg Brandl2008-08-122-4/+12
| | | | (backport from r65644)
* - Issue #3537: Fix an assertion failure when an empty but presized dictGeorg Brandl2008-08-113-0/+18
| | | | object was stored in the freelist. (backport from r65637.)