summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* commit the portion of PyXML patch #919008 that is relevant to theFred Drake2004-03-202-2/+42
* fix two typos that turned text into markupFred Drake2004-03-201-1/+1
* Ignore oodles of MSVC-generated files.Tim Peters2004-03-201-0/+14
* A helper for rt.bat, copied (but with path adjustment) from PCbuild.Tim Peters2004-03-201-0/+25
* PyFile_WriteObject(): some of the local variables are only used whenFred Drake2004-03-191-0/+2
* Expand on the semantics of reload(). Closes #919099.Skip Montanaro2004-03-191-2/+24
* Factor out a double lookup.Raymond Hettinger2004-03-191-2/+1
* Add an entry for addition of the ptcp154 codec.Hye-Shik Chang2004-03-191-0/+2
* Add a new unicode codec: ptcp154 (Kazakh)Hye-Shik Chang2004-03-193-0/+172
* Make iterators length transparent where possible.Raymond Hettinger2004-03-183-3/+42
* Improve deque iteration.Raymond Hettinger2004-03-181-1/+102
* Add news entries for the dictionary optimizations.Raymond Hettinger2004-03-182-1/+8
* Make the new dictionary iterators transparent with respect to length.Raymond Hettinger2004-03-181-4/+20
* Ignore error status codes occurred while compiling site-packagesHye-Shik Chang2004-03-181-2/+2
* Fix capitalization of title for subsection 2.Brett Cannon2004-03-181-1/+1
* 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