summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Trimmed trailing whitespace.Tim Peters2004-08-081-5/+5
* This was quite a dark bug in my recent in-place string concatenationArmin Rigo2004-08-071-1/+2
* Fixed some compiler warnings.Armin Rigo2004-08-071-2/+2
* Subclasses of string can no longer be interned. The semantics ofJeremy Hylton2004-08-071-22/+12
* SF bug #1004669: Type returned from .keys() is not checkedRaymond Hettinger2004-08-071-0/+5
* SF #989185: Drop unicode.iswide() and unicode.width() and addHye-Shik Chang2004-08-043-437/+299
* Be more careful about maintaining the invariants; it was actuallyFred Drake2004-08-031-3/+25
* Repair the same thinko in two places about handling of _Py_RefTotal inMichael W. Hudson2004-08-032-10/+12
* Tweak previous patch to silence a warning about the unused left value in theBrett Cannon2004-08-031-1/+1
* Add a missing decref.Michael W. Hudson2004-08-021-0/+1
* list_ass_slice(): Document the obscure new intent that deleting a sliceTim Peters2004-07-311-8/+16
* list_ass_slice(): The difference between "recycle" and "recycled" wasTim Peters2004-07-311-17/+10
* Armin asked for a list_ass_slice review in his checkin, so here's theTim Peters2004-07-311-26/+44