summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Insert missing flag.Raymond Hettinger2005-06-191-1/+1
* SF patch #1200018: Restore GC support to set objectsRaymond Hettinger2005-06-181-7/+24
* fix object.__divmod__.__doc__Anthony Baxter2005-06-031-2/+8
* This is my patch:Michael W. Hudson2005-05-271-239/+509
* Disallow opening files with modes 'aU' or 'wU' as specified by PEPSkip Montanaro2005-05-201-0/+51
* Fixed a quite misleading comment: a "not" should not have been there.Armin Rigo2005-05-151-1/+1
* SF patch #1200051: Small optimization for PyDict_Merge()Raymond Hettinger2005-05-141-0/+6
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-265-75/+73
* As per discussion on python-dev, descriptors defined in C with a NULL setterBarry Warsaw2005-04-191-2/+2
* SF bug #1183742: PyDict_Copy() can return non-NULL value on errorRaymond Hettinger2005-04-151-1/+1
* Fix for rather inaccurately titled bugMichael W. Hudson2005-03-301-0/+6
* SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior.Raymond Hettinger2005-03-271-5/+1
* SF bug #1155938: Missing None check for __init__().Raymond Hettinger2005-03-031-0/+6
* Revert previous checkin on getargs 'L' code. Try to convert allMartin v. Löwis2005-03-031-1/+22
* * Beef-up tests for str.count().Raymond Hettinger2005-02-201-2/+7
* * Beef-up testing of str.__contains__() and str.find().Raymond Hettinger2005-02-201-13/+26
* FixMichael W. Hudson2005-02-171-2/+0
* Code simplification -- eliminate lookup when value is known in advance.Raymond Hettinger2005-02-051-2/+4
* More bug #1077106 stuff, sorry -- modem induced impatiece!Michael W. Hudson2005-01-311-0/+1
* Dima Dorfman's patch for coercion/comparison of C types (patch #995939), withArmin Rigo2004-12-231-16/+11
* Bug #1079011: Incorrect error message (somewhat)Raymond Hettinger2004-12-191-1/+1
* Small boost to PySequence_Fast(). Lists build faster than tuples forRaymond Hettinger2004-12-181-1/+1
* Add missing decref.Raymond Hettinger2004-12-161-0/+1
* SF bug #1085744: Performance issues with PySequence_Tuple()Raymond Hettinger2004-12-161-4/+14
* Remove PyRange_New().Raymond Hettinger2004-12-031-45/+0
* Correct the handling of 0-termination of PyUnicode_AsWideChar()Marc-André Lemburg2004-11-221-1/+7
* SF 1062353: set pickling problemsRaymond Hettinger2004-11-091-2/+9
* If close() fails in file_dealloc, then print an error message toPeter Astrand2004-11-071-1/+8
* SF 1055820: weakref callback vs gc vs threadsTim Peters2004-10-301-1/+3
* Wrote down the invariants of some common objects whose structure isArmin Rigo2004-10-281-0/+12
* SF bug #1054139: serious string hashing error in 2.4b1Raymond Hettinger2004-10-261-0/+1
* Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar.Marc-André Lemburg2004-10-151-2/+2
* Finalize the freelist of list objects.Raymond Hettinger2004-10-071-0/+13
* Use Py_CLEAR(). Add unrelated test.Raymond Hettinger2004-09-281-1/+1
* Checkin Tim's fix to an error discussed on python-dev.Raymond Hettinger2004-09-261-10/+20
* Remove 'extern' declaration for _Py_SwappedOp.Brett Cannon2004-09-251-1/+1
* Ensure negative offsets cannot be passed to buffer(). When composingNeil Schemenauer2004-09-241-2/+15
* Fix buffer offset calculation (need to compute it before changingNeil Schemenauer2004-09-241-11/+7
* float_richcompare(): Use the new Py_IS_NAN macro to ensure that, onTim Peters2004-09-231-11/+9
* SF bug #513866: Float/long comparison anomaly.Tim Peters2004-09-231-8/+206
* A static swapped_op[] array was defined in 3 different C files, & I thinkTim Peters2004-09-233-12/+6
* Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask].Martin v. Löwis2004-09-201-0/+11
* SF bug #1030557: PyMapping_Check crashes when argument is NULLRaymond Hettinger2004-09-191-2/+2
* Initialize sep and seplen to suppress warning from gcc.Skip Montanaro2004-09-161-3/+3
* Add a missing line continuation character.Thomas Heller2004-09-151-1/+1
* Make the word "module" appear in the error string for calling theMichael W. Hudson2004-09-141-1/+1
* Move a comment back to its rightful location.Michael W. Hudson2004-09-141-2/+2
* Make the hint about the None default less ambiguous.Walter Dörwald2004-09-141-1/+1
* Enhance the docstrings for unicode.split() and string.split()Walter Dörwald2004-09-141-2/+2
* SF #1022910: Conserve memory with list.pop()Raymond Hettinger2004-09-121-8/+11