summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* #4077: No need to append \n when calling Py_FatalErrorAmaury Forgeot d'Arc2009-01-171-1/+1
* #4930: Slightly cleaner (and faster) code in type creation:Amaury Forgeot d'Arc2009-01-171-2/+2
* Issue #4935: The overflow checking code in the expandtabs() method commonAntoine Pitrou2009-01-131-37/+30
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-123-2/+19
* Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.Martin v. Löwis2009-01-074-12/+18
* Issue #3680: Reference cycles created through a dict, set or deque iterator d...Antoine Pitrou2009-01-012-12/+29
* Issue #4701: implicitly call PyType_Ready from PyObject_HashNick Coghlan2008-12-301-0/+11
* #4764 set IOError.filename when trying to open a directory on POSIX platformsBenjamin Peterson2008-12-291-2/+2
* Backport r67974:Georg Brandl2008-12-281-16/+25
* Remove unnecessary casts related to unicode_decode_call_errorhandler.Alexandre Vassalotti2008-12-271-27/+29
* add py3k warnings to frame.f_exc_*Benjamin Peterson2008-12-221-3/+35
* Issue #3439: add bit_length method to int and long.Mark Dickinson2008-12-172-0/+107
* #3632: the "pyo" macro from gdbinit can now run when the GIL is released.Amaury Forgeot d'Arc2008-12-151-0/+3
* Issue #4509: bugs in bytearray with exports (buffer protocol)Antoine Pitrou2008-12-061-11/+31
* Issue #4445: save 3 bytes (on average, on a typical machine) perMark Dickinson2008-12-051-13/+21
* Backport r67478Raymond Hettinger2008-12-031-8/+9
* Fix a small typo in docstringAmaury Forgeot d'Arc2008-11-291-1/+1
* make sure that bytearray methods return a new bytearray even if there is no c...Benjamin Peterson2008-11-191-21/+3
* when __getattr__ is a descriptor, call it correctly; fixes #4230Benjamin Peterson2008-11-171-3/+36
* #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as t...Amaury Forgeot d'Arc2008-10-071-4/+7
* Punctuation fix; expand dict.update docstring to be clearerAndrew M. Kuchling2008-10-041-4/+6
* Docstring change for *partition: use same tense as other docstrings.Andrew M. Kuchling2008-10-042-13/+13
* Docstring changes: Specify exceptions raisedAndrew M. Kuchling2008-10-041-3/+6
* Docstring change: Specify exception raisedAndrew M. Kuchling2008-10-041-1/+3
* Use correct capitalization of NaNAndrew M. Kuchling2008-10-041-2/+2
* Mention exception in docstringAndrew M. Kuchling2008-10-031-1/+2
* Fixed a couple more C99 comments and one occurence of inline.Christian Heimes2008-10-021-15/+15
* Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/pyth...Christian 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