summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Optimize dictionary iterators.Raymond Hettinger2004-03-181-57/+202
* Minor grammatical fixes.Brett Cannon2004-03-181-3/+3
* Extremely minor typo fixed.Brett Cannon2004-03-181-1/+1
* Dictionary optimizations:Raymond Hettinger2004-03-171-24/+61
* Add missing decrefRaymond Hettinger2004-03-171-0/+1
* Speedup the inner loops for dropwhile(), islice(), ifilter(), andRaymond Hettinger2004-03-171-9/+17
* The example files need to be opened with the "b" flag.Skip Montanaro2004-03-171-2/+2
* * supply a more useful error message when append() is called on theGregory P. Smith2004-03-161-2/+8
* bugfix for people executing test_all to run the test suite. (call theGregory P. Smith2004-03-161-1/+1
* fixes SF bug 914019 - DB.has_key was not honoring its txn argumentGregory P. Smith2004-03-161-2/+2
* 1. Make builtin foreground Royal Purple instead of Barney Purple.Kurt B. Kaiser2004-03-162-27/+32
* Fix typos and add some elaborationsRaymond Hettinger2004-03-151-4/+9
* Port test_binascii.py to PyUnit and enhance tests.Walter Dörwald2004-03-152-152/+149
* Revert last change. Found an application that was worse off with resizeRaymond Hettinger2004-03-151-13/+10
* 1. Bug in Patch 805830 fixed by Nigel RoweKurt B. Kaiser2004-03-152-22/+26
* Eliminate an unnecessary test on a common code path.Raymond Hettinger2004-03-151-3/+1
* Add missing docstrings.Raymond Hettinger2004-03-141-0/+67
* list_resize() now has an "exact" option for bypassing the overallocationRaymond Hettinger2004-03-141-10/+13
* SF feature request #686323: Minor array module enhancementsRaymond Hettinger2004-03-144-14/+51
* Update the array overallocation scheme to match the approach used forRaymond Hettinger2004-03-142-62/+79
* Two issues spotted by Ronald OUssoren:Jack Jansen2004-03-134-3/+2234
* Don't use "dict" as a variable, it shadows the builtin. Spotted byJack Jansen2004-03-131-13/+13
* compile.h and eval.h weren't being included which kept a fair bit of theSkip Montanaro2004-03-131-0/+3
* Force option should be applied to a single package, not recursivelyJack Jansen2004-03-131-1/+1
* SF patch #906501: Fix typos in pystate.h commentsRaymond Hettinger2004-03-131-2/+2
* SF patch #911431: robot.txt must be robots.txtRaymond Hettinger2004-03-132-3/+3
* SF bug #910986: copy.copy fails for array.arrayRaymond Hettinger2004-03-133-0/+24
* Make PySequence_Fast_ITEMS public. (Thanks Skip.)Raymond Hettinger2004-03-122-4/+4
* LIST_APPEND is predicably followed by JUMP_ABSOLUTE.Raymond Hettinger2004-03-121-1/+5
* * Eliminate duplicate call to PyObject_Size().Raymond Hettinger2004-03-121-3/+3
* Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER.Raymond Hettinger2004-03-121-9/+9
* Speedup for-loops by inlining PyIter_Next(). Saves duplicate testsRaymond Hettinger2004-03-121-8/+10
* Use a new macro, PySequence_Fast_ITEMS to factor out code common toRaymond Hettinger2004-03-124-16/+19
* - Added a downloader using urllib2 in stead of curl, based on codeJack Jansen2004-03-111-51/+137
* Now that list.extend() is at the root of many list operations, it becomesRaymond Hettinger2004-03-111-3/+9
* Eliminate a big block of duplicate code in PySequence_List() byRaymond Hettinger2004-03-113-54/+13
* list_inplace_concat() is now expressed in terms of list_extend() whichRaymond Hettinger2004-03-111-14/+13
* Make buffer objects based on mutable objects (like array) safe.Neil Schemenauer2004-03-112-82/+154
* Document one of the many problems with the buffer object.Neil Schemenauer2004-03-111-2/+9
* Rename static functions, they should not have the _Py prefix.Neil Schemenauer2004-03-111-11/+10
* Make test_coercion.py less sensitive to platform fp quirks. ClosesNeil Schemenauer2004-03-102-333/+348
* Use memcpy() instead of memmove() when the buffers are known to be distinct.Raymond Hettinger2004-03-101-2/+2
* Tidied up the implementations of reversed (including the custom onesRaymond Hettinger2004-03-104-28/+58
* Eliminate the double reverse option. It's only use caseRaymond Hettinger2004-03-102-17/+2
* Optimize inner loops for subscript, repeat, and concat.Raymond Hettinger2004-03-092-36/+59
* Optimize slice assignments.Raymond Hettinger2004-03-091-16/+17
* SF Patch #912462: Relocate \end tag to the right place.Hye-Shik Chang2004-03-091-1/+2
* Refactor and optimize code for UNPACK_SEQUENCE.Raymond Hettinger2004-03-081-27/+13
* Remove calls to currentThread() in _Condition methods that were side-effect.Brett Cannon2004-03-081-2/+0
* The copy module now handles sets directly. The __copy__ methods are noRaymond Hettinger2004-03-081-4/+0