summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* This is a reorganization of list_ass_slice(). It should probably be reviewed,Armin Rigo2004-07-301-22/+20
* What if you call lst.__init__() while it is being sorted? :-)Armin Rigo2004-07-301-2/+4
* * Simplify and speed-up list_resize(). Relying on the newly documentedRaymond Hettinger2004-07-291-3/+7
* * drop the unreasonable list invariant that ob_item should never come backArmin Rigo2004-07-291-28/+46
* Minor memory leak.Armin Rigo2004-07-291-0/+2
* Fix obscure breakage (relative to 2.3) in listsort: the test for listTim Peters2004-07-291-26/+12
* Trimmed trailing whitespace.Tim Peters2004-07-291-21/+21
* PyList_New(): we went to all the trouble of computing and bounds-checkingTim Peters2004-07-291-1/+2
* Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__().Marc-André Lemburg2004-07-231-10/+12
* Check the type of values returned by __int__, __float__, __long__,Neil Schemenauer2004-07-192-12/+33
* Moved SunPro warning suppression into pyport.h and out of individualNicholas Bastin2004-07-154-16/+0
* Fix a copy&paste typo.Marc-André Lemburg2004-07-101-1/+1
* .encode()/.decode() patch part 2.Marc-André Lemburg2004-07-082-0/+20
* Allow string and unicode return types from .encode()/.decode()Marc-André Lemburg2004-07-082-7/+119
* Fix a couple of signed/unsigned comparison warningsNeal Norwitz2004-07-081-1/+1
* Remove unused macros in .c filesNeal Norwitz2004-07-082-4/+0
* SF bug #978308, Spurious errors taking bool of dead proNeal Norwitz2004-07-081-1/+1
* Make weak references subclassable:Fred Drake2004-07-022-68/+183
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-022-7/+10
* sizeof(char) is 1, by definition, so get rid of that expression inTim Peters2004-06-271-12/+7
* Patch #966493: Cleanup generator/eval_frame exposure.Martin v. Löwis2004-06-271-1/+1
* SF bug #980419: int left-shift causes memory leakRaymond Hettinger2004-06-261-4/+26
* Cosmetic spacing fix.Raymond Hettinger2004-06-251-1/+1
* Fix leak found by Eric Huss.Raymond Hettinger2004-06-251-1/+6
* Disabling end-of-loop code not reached warning on SunProNicholas Bastin2004-06-181-0/+4
* Fixed end-of-loop code not reached warning when using SunPro CNicholas Bastin2004-06-173-0/+12
* Remove a function no longer in use.Raymond Hettinger2004-06-141-8/+0
* Remove unnecessary GC support. Sets cannot have cycles.Raymond Hettinger2004-06-131-16/+7
* * Factor out PyObject_SelfIter().Raymond Hettinger2004-06-121-9/+3
* Fix for bug #966623 - classes created with type() in an exec(, {}) don'tAnthony Baxter2004-06-111-0/+4
* dump HAVE_FOPENRF stuff - obsoleteSkip Montanaro2004-06-111-26/+19
* Futher improvements to frozenset hashing (based on Yitz Gale's battery ofRaymond Hettinger2004-06-101-8/+10
* Fixups to the hash function for frozensets.Raymond Hettinger2004-06-101-1/+4
* Add a final permutation step to the tuple hash function.Raymond Hettinger2004-06-101-0/+1
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-083-13/+20
* whoops, I wanted that commented out by default, will add doc to MiscNeal Norwitz2004-06-061-1/+1
* SF bug 881641, make it easier to use valgrindNeal Norwitz2004-06-061-4/+39
* Reword messageAndrew M. Kuchling2004-06-051-1/+1
* Fix exception wordingAndrew M. Kuchling2004-06-051-1/+1
* Replaced arbitrary addend in tuple_hash with one that is known to generateRaymond Hettinger2004-06-041-1/+9
* - SF #962502: Add two more methods for unicode type; width() andHye-Shik Chang2004-06-023-425/+563
* Patch #957398: Add public API for Generator Object/Type.Martin v. Löwis2004-06-011-0/+129