summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fixes and tests for various "holding pointers when arbitrary Python codeMichael W. Hudson2003-12-041-35/+46
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-293-64/+50
* Make sure the list.sort's decorate step unwinds itself before returningRaymond Hettinger2003-11-281-2/+9
* Add optional fillchar argument to ljust(), rjust(), and center() string methods.Raymond Hettinger2003-11-262-26/+63
* Expose dict_contains() and PyDict_Contains() with is about 10% fasterRaymond Hettinger2003-11-252-12/+13
* Factor out more duplicate code.Raymond Hettinger2003-11-241-77/+51
* Stop GCC warning about int literal that's so long that it becomes anGuido van Rossum2003-11-241-1/+1
* * Checkin remaining documentationRaymond Hettinger2003-11-241-137/+148
* * Simplify hash function and add test to show effectiveness of the hashRaymond Hettinger2003-11-231-14/+26
* - When method objects have an attribute that can be satisfied eitherGuido van Rossum2003-11-221-28/+30
* Extend temporary hashability to remove() and discard().Raymond Hettinger2003-11-221-11/+52
* Allow temporary hashability for the __contains__ test.Raymond Hettinger2003-11-211-1/+17
* issubset() and issuperset() to work with general iterablesRaymond Hettinger2003-11-211-5/+15
* Three minor performance improvements:Raymond Hettinger2003-11-201-12/+41
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-4/+30
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-202-5/+1
* Getting rid of code dependent on GUSI or the MetroWerks compiler.Jack Jansen2003-11-191-28/+0
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-8/+0
* Implement straightforward suggestions from gcc warnings (remove unusedGuido van Rossum2003-11-181-3/+2
* Use PySequence_Contains() instead of direct access macro.Raymond Hettinger2003-11-181-11/+5
* Various fixups (most suggested by Armin Rigo).Raymond Hettinger2003-11-171-40/+66
* Fix output spacing typoRaymond Hettinger2003-11-161-1/+1
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+1073
* subtype_dealloc(): Simplified overly contorted retracking logic. WithTim Peters2003-11-131-6/+5
* subtype_dealloc(): A more complete fix for critical bug 840829 +Tim Peters2003-11-131-6/+19
* SF bug 840829: weakref callbacks and gc corrupt memory.Tim Peters2003-11-121-1/+6
* Improve the reverse list iterator to free memory as soon as the iteratorRaymond Hettinger2003-11-081-1/+4
* Minor code fixup. Make sure that len reflects the current list size.Raymond Hettinger2003-11-081-0/+1
* Optimize reversed(list) using a custom iterator.Raymond Hettinger2003-11-072-4/+98
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-062-1/+161
* Fix compiler warning about possible use of n without assignment.Jeremy Hylton2003-11-031-5/+6
* Use PyTuple_Pack() to simplify enumerate().Raymond Hettinger2003-11-021-5/+1
* Add list.sorted() classmethod.Raymond Hettinger2003-10-291-0/+37
* Deleting cyclic object comparison.Armin Rigo2003-10-282-186/+12
* Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItemRaymond Hettinger2003-10-271-1/+1
* Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().Walter Dörwald2003-10-241-19/+20
* Avoid confusing name for the 3rd argument to str.replace().Fred Drake2003-10-221-3/+3
* Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353).Jeremy Hylton2003-10-211-1/+0
* Fix indentation.Jeremy Hylton2003-10-211-1/+1
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Make CObjects mutable. Fixes #477441.Martin v. Löwis2003-10-191-0/+14
* Patch #825679: Clarify semantics of .isfoo on empty strings.Martin v. Löwis2003-10-182-22/+24
* Patch #809535: Mention behaviour of seek on text files. Backported to 2.3.Martin v. Löwis2003-10-181-1/+3
* Fix typo found by Neal Norwitz.Raymond Hettinger2003-10-161-1/+1
* * list.sort() now supports three keyword arguments: cmp, key, and reverse.Raymond Hettinger2003-10-161-5/+228
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-124-29/+28
* Extended tuple's C API to include a new function, PyTuple_Pack() that isRaymond Hettinger2003-10-121-0/+22
* Use the simpler and faster PyArg_UnpackTuple() instead ofRaymond Hettinger2003-10-111-24/+24
* SF bug #820397: __nonzero__() returns 1/0Raymond Hettinger2003-10-111-1/+15
* Return a bool rather than an int from proxy_has_key().Guido van Rossum2003-10-091-1/+4