summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* SF bug #942952: Weakness in tuple hashRaymond Hettinger2004-06-011-2/+3
* Add weakref support to array.array and file objects.Raymond Hettinger2004-05-311-2/+5
* Make sets and deques weak referencable.Raymond Hettinger2004-05-301-4/+8
* Update docstring for dict.update() to match the new realities.Walter Dörwald2004-05-281-1/+2
* Remove float_compare as perMichael W. Hudson2004-05-261-9/+1
* SF bug #952866: "can't multiply sequence *by* non-int"Raymond Hettinger2004-05-121-1/+1
* Nits:Raymond Hettinger2004-05-051-16/+9
* SF patch #947476: Apply freelist technique to listsRaymond Hettinger2004-05-051-4/+17
* Two new public API functions, Py_IncRef and Py_DecRef. Useful forThomas Heller2004-04-221-0/+12
* * Add unittests for iterators that report their lengthRaymond Hettinger2004-04-123-10/+29
* Use Py_RETURN_NONE macro where applicable.Raymond Hettinger2004-04-121-14/+8
* Small refactoring saving one function() and eliminating some indirection.Raymond Hettinger2004-04-121-11/+10
* * Specialize ins1() into app1() for appends. Saves several unnecessaryRaymond Hettinger2004-04-121-6/+36
* SF Patch #926375: Remove a useless UTF-16 support code that is neverHye-Shik Chang2004-04-061-18/+3
* Improve previous checkin to use a slot check instead of equivalentRaymond Hettinger2004-04-051-1/+2
* Improve accuracy of sequence and mapping checks.Raymond Hettinger2004-04-041-2/+8
* If a file is opened with an explicit buffer size >= 1, repeatedAndrew MacIntyre2004-04-041-0/+2
* Get rid of gcc warning.Hye-Shik Chang2004-03-251-1/+2
* Correct code to advance ptr to be well-formed C.Martin v. Löwis2004-03-251-1/+1
* Ensure super() lookup of descriptor from classmethod works (SF #743627)Phillip J. Eby2004-03-251-1/+8
* Intern __name__.Martin v. Löwis2004-03-231-1/+9
* Restored revision 2.87.Armin Rigo2004-03-211-12/+5
* PyTuple_New(): vrbl i no longer referenced, so removed it (which killsTim Peters2004-03-211-1/+1
* This is the fastest I could get on Intel GCC. I kept the memset() in to clearArmin Rigo2004-03-211-4/+11
* Changed file.name to be the object passed as the 'name' argument to file()Nicholas Bastin2004-03-211-17/+21