summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Change C spacing to 4 spaces by default to match PEP 7 for new C files.Brett Cannon2006-05-261-1/+1
* substring split now uses /F's fast string matching algorithm.Andrew Dalke2006-05-261-40/+57
* Add rpartition() and path cachingAndrew M. Kuchling2006-05-261-3/+18
* Revert tests to MAL's original round sizes to retiain comparabilitySteve Holden2006-05-2617-141/+52
* needspeed: rpartition documentation, tests, and a bug fixes.Fredrik Lundh2006-05-263-4/+28
* needforspeed: added rpartition implementationFredrik Lundh2006-05-265-2/+166
* removed unnecessary includeFredrik Lundh2006-05-261-2/+0
* Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache ...Georg Brandl2006-05-263-4/+38
* Reordered, and wrote more docs.Thomas Heller2006-05-261-74/+127
* Use minimum calibration time rather than avergae to avoidSteve Holden2006-05-261-12/+17
* needforspeed: remove remaining USE_FAST macros; if fastsearch wasFredrik Lundh2006-05-261-67/+2
* needforspeed: cleanupFredrik Lundh2006-05-261-4/+8
* needforspeed: stringlib refactoring (in progress)Fredrik Lundh2006-05-263-77/+71
* Write some docs.Thomas Heller2006-05-261-0/+40
* needforspeed: stringlib refactoring (in progress)Fredrik Lundh2006-05-264-179/+111
* Add missing svn:eol-style property to text files.Tim Peters2006-05-261-22/+22
* Whitespace normalization.Tim Peters2006-05-262-2/+1
* Repair Windows compiler warnings about mixingTim Peters2006-05-261-2/+2
* For now, I gave up with automatic conversion of reST to Python-latex,Thomas Heller2006-05-262-0/+207
* needforspeed: use Py_LOCAL on a few more locals in stringobject.cFredrik Lundh2006-05-261-26/+27
* Add -t option to allow easy test selection.Steve Holden2006-05-2617-111/+255
* fix signed/unsigned mismatch in structBob Ippolito2006-05-261-2/+2
* Test for more edge strip cases; leading and trailing separator gets removedAndrew Dalke2006-05-261-0/+2
* Eeked out another 3% or so performance in split whitespace by cleaning up the...Andrew Dalke2006-05-261-35/+38
* Enable PY_USE_INT_WHEN_POSSIBLE in structBob Ippolito2006-05-261-3/+1
* Fix _struct typo that broke some 64-bit platformsBob Ippolito2006-05-261-1/+1
* Fix distutils so that libffi will cross-compile between darwin/x86 and darwin...Bob Ippolito2006-05-262-5/+3
* Typo fixAndrew M. Kuchling2006-05-261-1/+1
* Add buffer support for struct, socketAndrew M. Kuchling2006-05-261-8/+40
* Explicitly close files. I'm trying to stop the frequent spurious test_tarfileTim Peters2006-05-261-9/+32
* Changes to string.split/rsplit on whitespace to preallocate space in theAndrew Dalke2006-05-261-56/+75
* Use open() to open files (was using file()).Tim Peters2006-05-261-10/+10
* fix #1229380 No struct.pack exception for some out of range integersBob Ippolito2006-05-262-13/+98
* Added more rstrip tests, including for prealloc'ed arraysAndrew Dalke2006-05-261-1/+54
* quick hack to fix busted binhex testBob Ippolito2006-05-261-1/+5
* Add str.partition()Andrew M. Kuchling2006-05-261-0/+21
* Whitespace normalization.Tim Peters2006-05-261-1/+1
* Test cases for off-by-one errors in string split with multicharacter pattern.Andrew Dalke2006-05-261-0/+2
* I like tests.Andrew Dalke2006-05-261-0/+32
* Whitespace normalization.Tim Peters2006-05-261-2/+1
* - Remove previous version of the binary distribution script for OSXRonald Oussoren2006-05-2615-663/+87
* Support for buffer protocol for socket and struct.Martin Blais2006-05-266-203/+533
* Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers,Fredrik Lundh2006-05-261-1/+1
* Typo fixesAndrew M. Kuchling2006-05-261-1/+1
* needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive"Fredrik Lundh2006-05-262-15/+31
* Integrate installing a framework in the 'make install'Ronald Oussoren2006-05-263-5/+25
* - Search the sqlite specific search directoriesRonald Oussoren2006-05-261-1/+45
* use Py_LOCAL also for string and unicode objectsFredrik Lundh2006-05-263-37/+18
* when generating python code prefer to generate valid python codeJack Diederich2006-05-261-3/+3
* needforspeed: added Py_LOCAL macro, based on the LOCAL macro usedFredrik Lundh2006-05-262-53/+70