summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"Serhiy Storchaka2013-01-151-21/+25
* Issue #11461: Fix the incremental UTF-16 decoder. Original patch bySerhiy Storchaka2013-01-081-1/+4
* Fix out of bound read in UTF-32 decoder on "narrow Unicode" builds.Serhiy Storchaka2013-01-081-1/+1
* untabifyBenjamin Peterson2013-01-021-3/+3
* call PyErr_Clear() when ignoring error from PyNumber_Int (closes #15516)Benjamin Peterson2013-01-021-1/+4
* ensure the attribute name string is initalized before using it (closes #16839)Benjamin Peterson2013-01-021-1/+6
* get the core to compile --disable-unicodeBenjamin Peterson2013-01-021-1/+3
* Issue #16761: Raise TypeError when int() or long() called with base argument ...Serhiy Storchaka2012-12-282-2/+14
* Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-3/+2
* Issue #9742: Sneaky fix for build failure on Solaris 9.Mark Dickinson2012-11-171-0/+9
* Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...Antoine Pitrou2012-11-171-2/+26
* Issue #16453: Fix equality testing of dead weakref objects.Antoine Pitrou2012-11-111-4/+8
* Fix compilation on WindowsChristian Heimes2012-11-031-1/+1
* #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ...Ezio Melotti2012-11-031-0/+6
* avoid a function call with redundant checks for dict sizeBenjamin Peterson2012-10-311-1/+1
* only fast-path fromkeys() when the constructor returns a empty dict (closes #...Benjamin Peterson2012-10-311-33/+34
* initialize more global type objects (closes #16369)Benjamin Peterson2012-10-312-0/+18
* Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-284-22/+17
* Issue #14783: Backport changes from 3.2.Chris Jerdonek2012-10-086-20/+34
* Issues #16029, #16030: Fix pickling and repr of large xranges.Mark Dickinson2012-09-281-5/+29
* Fixed memory leak in error branch of object_repr which may leak a reference t...Christian Heimes2012-09-101-1/+3
* Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
* PyTuple_Pack() was missing va_end() in its error branch which lead to a resou...Christian Heimes2012-09-101-1/+3
* Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-052-0/+42
* use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-282-2/+2
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+7
* Issue #14579: Fix error handling bug in the utf-16 decoder.Antoine Pitrou2012-07-201-1/+1
* allow any number to be returned from __length_hint__ (closes #15354)Benjamin Peterson2012-07-151-1/+1
* Fixes issue #12268 for file readline, readlines and read() and readinto methods.Gregory P. Smith2012-06-261-4/+61
* Improve tooltips for splitlines() by showing that the default for keepends is...Raymond Hettinger2012-06-023-3/+3
* Issue #8767: Restore building with --disable-unicode.Martin v. Löwis2012-05-201-0/+2
* fix possible refleak (closes #14752)Benjamin Peterson2012-05-081-2/+4
* close() doesn't take any args (closes #14717)Benjamin Peterson2012-05-031-1/+1
* use formats that work on 2.7Benjamin Peterson2012-05-011-7/+6
* fix calling the classmethod descriptor directly (closes #14699)Benjamin Peterson2012-05-011-3/+41
* don't use a slot wrapper from a different special method (closes #14658)Benjamin Peterson2012-04-241-2/+3
* SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (clos...Benjamin Peterson2012-04-181-2/+4
* merge 2.7 release branchBenjamin Peterson2012-04-092-0/+4
|\
| * fix build without Py_DEBUG and DNDEBUG (closes #14509)Benjamin Peterson2012-04-092-0/+4
* | Issue #14505: Fix file descriptor leak when deallocating file objects created...Antoine Pitrou2012-04-051-1/+2
* | Issue #13019: Fix potential reference leaks in bytearray.extend().Antoine Pitrou2012-04-011-2/+6
* | kill this terribly outdated commentBenjamin Peterson2012-03-261-4/+0
* | check for string attribute names in old-style classes (closes #14334)Benjamin Peterson2012-03-161-3/+27
* | check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+7
* | #14161: fix compile error under Windows.Ezio Melotti2012-03-111-1/+2
* | #14161: fix the __repr__ of file objects to escape the file name.Ezio Melotti2012-03-111-4/+10
* | allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-081-2/+7
* | Issue #13521: dict.setdefault() now does only one lookup for the given key, m...Antoine Pitrou2012-02-261-44/+69
|/
* merge 2.6Benjamin Peterson2012-02-212-0/+2
|\
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-212-0/+2