- 7049d81 Revert change accidentally checked in as part of a whitespace normalization by Tim Peters · 21 years ago
- 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
- ce59c04 Remove support for SunOS 4. by Skip Montanaro · 21 years ago
- 2fb7029 SF Patch #871704: Py_SequenceFast can mask errors by Raymond Hettinger · 21 years ago
- 75c00ef [SF #866875] Add a specialized routine for one character by Hye-Shik Chang · 21 years ago
- b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
- 7832cd6 Apply tuple/list pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
- 1bc09b7 Cosmetic fix for wrongly indented tabs with ts=4. by Hye-Shik Chang · 21 years ago
- a3b11e7 * Simplify and speedup logic for tp_print. by Raymond Hettinger · 21 years ago
- 7db07e6 Fix gcc 3.3 warnings related to Py_UNICODE_WIDE. by Hye-Shik Chang · 21 years ago
- f1ca7f5 complete backout of listobject.c v2.171 by Andrew MacIntyre · 21 years ago
- 3097341 Revert previous two checkins to repair test failure. by Jeremy Hylton · 21 years ago
- 694e3a4 use the correct macro to access list size by Andrew MacIntyre · 21 years ago
- d57caed Performance of list([]) in 2.3 came up in a thread on comp.lang.python, by Andrew MacIntyre · 21 years ago
- 7fc4cf5 Fix unicode.rsplit()'s bug that ignores separater on the end of string when by Hye-Shik Chang · 21 years ago
- ac4ea13 There are places in Python which assume bytes have 8-bits. Formalize that a by Skip Montanaro · 21 years ago
- 40e9509 Fix broken xmlcharrefreplace by rev 2.204. (Pointy hat goes to perky) by Hye-Shik Chang · 21 years ago
- 4a264fb SF #859573: Reduce compiler warnings on gcc 3.2 and above. by Hye-Shik Chang · 21 years ago
- 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
- 81ad32e Speedup set.update by using the override mode for PyDict_Merge(). by Raymond Hettinger · 21 years ago
- 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
- fb4e33a Improve algorithm for set.difference when the input is not a set. by Raymond Hettinger · 21 years ago
- 438e02d * Refactor set.__contains__() by Raymond Hettinger · 21 years ago
- 0deab62 Refactor set.discard() and set.remove(). by Raymond Hettinger · 21 years ago
- 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago
- dc5ae11 Use dictionary specific looping idiom where possible. by Raymond Hettinger · 21 years ago
- 0c66967 Simplify previous checkin -- a new function was not needed. by Raymond Hettinger · 21 years ago
- d3ae672 Use PyDict_Contains() instead of PySequence_Contains(). by Raymond Hettinger · 21 years ago
- 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
- 19cb193 Fix memory error treatment correctly. Going to dsu_fail causes by Hye-Shik Chang · 21 years ago
- 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago
- 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
- 37e1363 Make sure the list.sort's decorate step unwinds itself before returning by Raymond Hettinger · 21 years ago
- 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
- bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 21 years ago
- a38123e Factor out more duplicate code. by Raymond Hettinger · 21 years ago
- 5f4e45d Stop GCC warning about int literal that's so long that it becomes an by Guido van Rossum · 21 years ago
- f5f41bf * Checkin remaining documentation by Raymond Hettinger · 21 years ago
- 49ba4c3 * Simplify hash function and add test to show effectiveness of the hash by Raymond Hettinger · 21 years ago
- baf0f8f - When method objects have an attribute that can be satisfied either by Guido van Rossum · 21 years ago
- bfd334a Extend temporary hashability to remove() and discard(). by Raymond Hettinger · 21 years ago
- 19c2d77 Allow temporary hashability for the __contains__ test. by Raymond Hettinger · 21 years ago
- 3fbec70 issubset() and issuperset() to work with general iterables by Raymond Hettinger · 21 years ago
- 82d73dd Three minor performance improvements: by Raymond Hettinger · 21 years ago
- 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
- eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
- 4bae2d5 Getting rid of code dependent on GUSI or the MetroWerks compiler. by Jack Jansen · 21 years ago
- fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
- b61982b Implement straightforward suggestions from gcc warnings (remove unused by Guido van Rossum · 21 years ago
- 1b92fd5 Use PySequence_Contains() instead of direct access macro. by Raymond Hettinger · 21 years ago
- 50a4bb3 Various fixups (most suggested by Armin Rigo). by Raymond Hettinger · 21 years ago
- e2c277a Fix output spacing typo by Raymond Hettinger · 21 years ago
- a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
- 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
- f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
- add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
- 001f228 Improve the reverse list iterator to free memory as soon as the iterator by Raymond Hettinger · 21 years ago
- c24c910 Minor code fixup. Make sure that len reflects the current list size. by Raymond Hettinger · 21 years ago
- 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
- 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
- ceac90a Fix compiler warning about possible use of n without assignment. by Jeremy Hylton · 21 years ago
- 54a831b Use PyTuple_Pack() to simplify enumerate(). by Raymond Hettinger · 21 years ago
- 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
- 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
- 98779e0 Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem by Raymond Hettinger · 21 years ago
- 4894c30 Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap(). by Walter Dörwald · 21 years ago
- d22bb65 Avoid confusing name for the 3rd argument to str.replace(). by Fred Drake · 21 years ago
- e4b9d8c Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353). by Jeremy Hylton · 21 years ago
- 174d276 Fix indentation. by Jeremy Hylton · 21 years ago
- f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
- 01a74b2 Make CObjects mutable. Fixes #477441. by Martin v. Löwis · 21 years ago
- 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 21 years ago
- 849a972 Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. by Martin v. Löwis · 21 years ago
- ae4a299 Fix typo found by Neal Norwitz. by Raymond Hettinger · 21 years ago
- 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
- cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
- 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
- f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
- 98c65be Return a bool rather than an int from proxy_has_key(). by Guido van Rossum · 21 years ago
- 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
- 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
- 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 21 years ago
- ced69f8 On c.l.py, Martin v. Löwis said that Py_UNICODE could be of a signed type, by Tim Peters · 21 years ago
- d808279 Double-fix of crash in Unicode freelist handling. by Jeremy Hylton · 21 years ago
- a9e14b7 Fix leak in classobject.c. The leak surfaced on the error exit when by Raymond Hettinger · 21 years ago
- deb2dc6 Change checks of PyUnicode_Resize() return value for clarity. by Jeremy Hylton · 21 years ago
- 7bbcde7 Only release buffer after file has been closed. Fixes #800824. by Martin v. Löwis · 21 years ago
- f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
- b859c07 SF bug #800796: Difference between hash() and __hash__() by Raymond Hettinger · 21 years ago
- 1e3bdf6 Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize(). by Martin v. Löwis · 21 years ago
- 574aa32 SF patch #798467: Update docstring of has_key for bool changes by Raymond Hettinger · 21 years ago
- 0970dba Remove 'e.g.' from error message by Raymond Hettinger · 21 years ago
- 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
- 98cad48 Fix SF #789402, Memory leak on open() by Neal Norwitz · 21 years ago
- 150523e Fix refcounting leak in charmaptranslate_lookup() by Walter Dörwald · 21 years ago
- 9b30f20 Fix another refcounting leak in PyUnicode_EncodeCharmap(). by Walter Dörwald · 21 years ago
- d4ade08 Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()). by Walter Dörwald · 21 years ago
- b2c7de4 Fix for by Michael W. Hudson · 21 years ago
- da0a067 My last fix left n used unitialized in tha a==b case. by Michael W. Hudson · 21 years ago