summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Check return result for errorNeal Norwitz2005-12-181-0/+2
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-171-3/+3
* Revert r41662 and the part of 41552 that originally caused the problemNeal Norwitz2005-12-151-7/+0
* Add a workaround for file.ftell() to raise IOError for ttys.Hye-Shik Chang2005-12-131-0/+7
* en_sit will be freed when en is DECREF'd. Don't double free.Neal Norwitz2005-12-111-1/+0
* Add const to several API functions that take char *.Jeremy Hylton2005-12-1020-39/+45
* Fix bugMichael W. Hudson2005-12-051-5/+13
* Fix leaked reference to None.Walter Dörwald2005-11-281-0/+1
* Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's.Neal Norwitz2005-11-131-2/+9
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-131-1/+1
* Added proper reflection on instances of <type 'method-wrapper'>, e.g.Armin Rigo2005-11-071-13/+46
* Another comment typo fixAndrew M. Kuchling2005-11-021-1/+1
* Fix typo in comment.Walter Dörwald2005-11-021-1/+1
* Remove .cvsignore files, as they live in svn:ignoreMartin v. Löwis2005-10-301-2/+0
* fix typos, mostly in commentsFred Drake2005-10-281-2/+2
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Fix bug:Michael W. Hudson2005-10-212-8/+0
* Merge ast-branch to headJeremy Hylton2005-10-204-11/+461
* Enhance the performance of two important Unicode characterMarc-André Lemburg2005-10-201-10/+52
* SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Wi...Neal Norwitz2005-10-201-0/+2
* Whitespace corrections.Marc-André Lemburg2005-10-191-19/+19
* Bug fix for [ 1331062 ] utf 7 codec broken.Marc-André Lemburg2005-10-191-8/+16
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-061-75/+107
* Fix PyString_Format so that the "%s" format works again when Unicode is notGeorg Brandl2005-10-011-0/+2
* (pedronis, arigo)Armin Rigo2005-09-241-1/+1
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-248-75/+111
* The key to the various sort columns got lost. Pulled fromSkip Montanaro2005-09-231-0/+10
* - On 64-bit platforms, when __len__() returns a value that cannot beGuido van Rossum2005-09-202-2/+12
* A minor fix for 64-bit platforms: when __len__() returns Python intGuido van Rossum2005-09-191-1/+11
* No longer ignore exceptions raised by comparisons during key lookup.Raymond Hettinger2005-09-161-48/+44
* patch [ 1118729 ] Error in representation of complex numbers(again)Georg Brandl2005-09-161-6/+3
* Fix bug in last checkin (2.231). To match previous behavior, unicodeNeil Schemenauer2005-08-311-0/+5
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-301-0/+75
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-264-1/+16
* * Add a fast equality check path for frozensets where the hash value hasRaymond Hettinger2005-08-241-5/+8
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-212-0/+10
* Add shortcuts for a|a and a&a.Raymond Hettinger2005-08-171-8/+9
* Fix nits.Raymond Hettinger2005-08-171-2/+2
* Results of a line-by-line comparison back to dictobject.c.Raymond Hettinger2005-08-171-127/+121
* Numerous fix-ups to C API and docs. Added tests for C API.Raymond Hettinger2005-08-161-9/+120
* DECREF --> XDECREFRaymond Hettinger2005-08-161-1/+1
* Add a C API for sets and frozensets.Raymond Hettinger2005-08-161-8/+72
* More function re-ordering (placing like functions together).Raymond Hettinger2005-08-131-86/+86
* * Bring lookkey() and lookkey_string() closer to dict version.Raymond Hettinger2005-08-131-93/+77
* Fix a too-aggressive assert (see SF#1257960). Previously, gen_iternextPhillip J. Eby2005-08-131-1/+1
* * Fix SF #1257731. Make __contains__(), remove(), and discard() only doRaymond Hettinger2005-08-121-26/+30
* Change the %s format specifier for str objects so that it returns aNeil Schemenauer2005-08-122-17/+33
* * Add short-circuit code for in-place operations with self (such asRaymond Hettinger2005-08-111-89/+153
* * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code.Raymond Hettinger2005-08-071-18/+51
* * Removed checked_error flag which no longer provides any benefit.Raymond Hettinger2005-08-061-15/+12