summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 67291 via svnmerge fromBenjamin Peterson2008-11-191-21/+3
* Merged revisions 67246 via svnmerge fromBenjamin Peterson2008-11-171-3/+36
* Merged revisions 66801,66803-66804,66813,66854-66856,66866,66870-66872,66874,...Georg Brandl2008-11-071-4/+6
* #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as t...Amaury Forgeot d'Arc2008-10-071-4/+7
* Merged revisions 66766-66767,66771-66772,66774,66776,66783-66787,66790,66793,...Benjamin Peterson2008-10-046-20/+26
* Merged revisions 66748 via svnmerge fromChristian Heimes2008-10-021-15/+15
* Merged revisions 66739 via svnmerge fromChristian Heimes2008-10-021-1/+1
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-262-8/+6
* #3965: on Windows, open() crashes if the filename or the mode is invalid,Amaury Forgeot d'Arc2008-09-251-4/+11
* Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.Martin v. Löwis2008-09-251-1/+1
* should use macro'ed symbols not directAndrew MacIntyre2008-09-221-3/+3
* Issue #3642: Suppress warning in obmalloc when size_t isMartin v. Löwis2008-09-111-1/+3
* Issue #3811: The Unicode database was updated to 5.1.Martin v. Löwis2008-09-102-758/+921
* Fix #3634 invalid return value from _weakref.ref(Exception).__init__Benjamin Peterson2008-09-091-1/+1
* Fix varname in docstring. #3822.Georg Brandl2008-09-091-2/+2
* #3777: long(4.2) returned an int, and broke backward compatibility.Amaury Forgeot d'Arc2008-09-091-1/+8
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-011-1/+1
* #3668: When PyArg_ParseTuple correctly parses a s* format, but raises anAntoine Pitrou2008-08-291-7/+0
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-262-80/+136
* generate py3k warnings on __getslice__, __delslice__, and __setslice__Benjamin Peterson2008-08-242-8/+47
* Fix:Neal Norwitz2008-08-242-7/+18
* Silenced compiler warningChristian Heimes2008-08-222-1/+2
* Changed type of numarenas from uint to size_t to silence a GCC warning on 64b...Christian Heimes2008-08-221-1/+1
* issue 3633: Solaris allows fullwidth Unicode digits in isxdigit, soMark Dickinson2008-08-211-5/+4
* Backport of r63826.Eric Smith2008-08-181-6/+42
* Fix a refleak in bytearray.split and bytearray.rsplit, detected byAmaury Forgeot d'Arc2008-08-171-4/+10
* Fix memory leak: Always DECREF obj in PyBuffer_Release.Martin v. Löwis2008-08-141-5/+3
* Make obj an owned reference in Py_buffer; this checkinMartin v. Löwis2008-08-141-1/+4
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-124-57/+79
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+35
* - Issue #3537: Fix an assertion failure when an empty but presized dictGeorg Brandl2008-08-111-0/+4
* Change the warning emitted for using the buffer() object; memoryview() in 3.0Brett Cannon2008-08-081-2/+1
* Issue #1481296: (again!) Make conversion of a float NaN to an int orMark Dickinson2008-08-041-2/+4
* Preemptively backport the relevant parts of r65420Antoine Pitrou2008-08-021-1/+1
* Correct a crash when two successive unicode allocations fail with a MemoryError:Amaury Forgeot d'Arc2008-07-311-1/+3
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-315-18/+73
* backport r64751Benjamin Peterson2008-07-301-0/+2
* #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versionsAntoine Pitrou2008-07-251-1/+1
* Convert from long to Py_ssize_t.Raymond Hettinger2008-07-241-10/+11
* Issue #2620: Overflow checking when allocating or reallocating memoryGregory P. Smith2008-07-221-0/+18
* Issue2378: pdb would delete free variables when stepping into a class statement.Amaury Forgeot d'Arc2008-07-211-3/+6
* Fix a couple of names in error messages that were wrongNeal Norwitz2008-07-201-2/+2
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-173-22/+16
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-173-16/+22
* Backport part of r65043.Georg Brandl2008-07-161-2/+1
* Use _getbytevalue() in init too.Georg Brandl2008-07-161-10/+3
* #3156: fix consistency in what type bytearray methods accept as items.Georg Brandl2008-07-161-40/+38
* Renamed a parameter in calc_number_widths, for consistency with the same para...Eric Smith2008-07-161-32/+32
* Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.for...Eric Smith2008-07-161-30/+68
* Issue #3008: add instance method float.hex and class method float.fromhexMark Dickinson2008-07-151-0/+407