summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Convert "__init__ should return None" from an exception to a warning.Raymond Hettinger2005-03-041-4/+5
* 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
* Backport: FixMichael W. Hudson2005-02-171-2/+0
* Bug #1079011: Incorrect error message (somewhat)Raymond Hettinger2004-12-191-1/+1
* Backport fixes for bugs #1086555 and #1085744.Raymond Hettinger2004-12-171-4/+9
* 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
* Typo fix: 'comparisions' is not a wordAndrew M. Kuchling2004-09-101-1/+1
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-23/+57
* SF patch #1020188: Use Py_CLEAR where necessary to avoid crashesRaymond Hettinger2004-09-013-14/+6
* long_pow(): Fix more instances of leaks in error cases.Tim Peters2004-08-301-3/+3
* SF patch 936813: fast modular exponentiationTim Peters2004-08-301-107/+185
* SF patch 936813: fast modular exponentiationTim Peters2004-08-291-21/+79
* PyUnicode_Join(): Bozo Alert. While this is chugging along, it mayTim Peters2004-08-271-0/+12
* PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't doTim Peters2004-08-271-126/+96
* PyUnicode_Join(): Missed a spot where I intended a cast from size_t toTim Peters2004-08-271-1/+1
* PyUnicode_Join(): Two primary aims:Tim Peters2004-08-271-40/+120
* Fix docstring typo.Raymond Hettinger2004-08-251-1/+1
* Stop producing or using OverflowWarning. PEP 237 thought this wouldTim Peters2004-08-251-36/+4
* SF Patch #1007087: Return new string for single subclass joins (Bug #1001011)Raymond Hettinger2004-08-231-12/+8
* Fix repr for negative imaginary part. Fixes #1013908.Martin v. Löwis2004-08-221-2/+6
* Patch #980082: Missing INCREF in PyType_Ready.Martin v. Löwis2004-08-181-1/+3
* SF patch #1005778, Fix seg fault if list object is modified during list.index()Neal Norwitz2004-08-131-3/+1
* This is my patchMichael W. Hudson2004-08-121-4/+32
* Previous commit was viewed as "perverse". Changed to just cast the unusedBrett Cannon2004-08-081-1/+3
* Bug 1003935: xrange overflowsTim Peters2004-08-081-1/+16