| Commit message (Expand) | Author | Age | Files | Lines |
* | Write some docs. | Thomas Heller | 2006-05-26 | 1 | -0/+40 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 4 | -179/+111 |
|
|
* | Add missing svn:eol-style property to text files. | Tim Peters | 2006-05-26 | 1 | -22/+22 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-26 | 2 | -2/+1 |
|
|
* | Repair Windows compiler warnings about mixing | Tim Peters | 2006-05-26 | 1 | -2/+2 |
|
|
* | For now, I gave up with automatic conversion of reST to Python-latex, | Thomas Heller | 2006-05-26 | 2 | -0/+207 |
|
|
* | needforspeed: use Py_LOCAL on a few more locals in stringobject.c | Fredrik Lundh | 2006-05-26 | 1 | -26/+27 |
|
|
* | Add -t option to allow easy test selection. | Steve Holden | 2006-05-26 | 17 | -111/+255 |
|
|
* | fix signed/unsigned mismatch in struct | Bob Ippolito | 2006-05-26 | 1 | -2/+2 |
|
|
* | Test for more edge strip cases; leading and trailing separator gets removed | Andrew Dalke | 2006-05-26 | 1 | -0/+2 |
|
|
* | Eeked out another 3% or so performance in split whitespace by cleaning up the... | Andrew Dalke | 2006-05-26 | 1 | -35/+38 |
|
|
* | Enable PY_USE_INT_WHEN_POSSIBLE in struct | Bob Ippolito | 2006-05-26 | 1 | -3/+1 |
|
|
* | Fix _struct typo that broke some 64-bit platforms | Bob Ippolito | 2006-05-26 | 1 | -1/+1 |
|
|
* | Fix distutils so that libffi will cross-compile between darwin/x86 and darwin... | Bob Ippolito | 2006-05-26 | 2 | -5/+3 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-05-26 | 1 | -1/+1 |
|
|
* | Add buffer support for struct, socket | Andrew M. Kuchling | 2006-05-26 | 1 | -8/+40 |
|
|
* | Explicitly close files. I'm trying to stop the frequent spurious test_tarfile | Tim Peters | 2006-05-26 | 1 | -9/+32 |
|
|
* | Changes to string.split/rsplit on whitespace to preallocate space in the | Andrew Dalke | 2006-05-26 | 1 | -56/+75 |
|
|
* | Use open() to open files (was using file()). | Tim Peters | 2006-05-26 | 1 | -10/+10 |
|
|
* | fix #1229380 No struct.pack exception for some out of range integers | Bob Ippolito | 2006-05-26 | 2 | -13/+98 |
|
|
* | Added more rstrip tests, including for prealloc'ed arrays | Andrew Dalke | 2006-05-26 | 1 | -1/+54 |
|
|
* | quick hack to fix busted binhex test | Bob Ippolito | 2006-05-26 | 1 | -1/+5 |
|
|
* | Add str.partition() | Andrew M. Kuchling | 2006-05-26 | 1 | -0/+21 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-26 | 1 | -1/+1 |
|
|
* | Test cases for off-by-one errors in string split with multicharacter pattern. | Andrew Dalke | 2006-05-26 | 1 | -0/+2 |
|
|
* | I like tests. | Andrew Dalke | 2006-05-26 | 1 | -0/+32 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-26 | 1 | -2/+1 |
|
|
* | - Remove previous version of the binary distribution script for OSX | Ronald Oussoren | 2006-05-26 | 15 | -663/+87 |
|
|
* | Support for buffer protocol for socket and struct. | Martin Blais | 2006-05-26 | 6 | -203/+533 |
|
|
* | Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, | Fredrik Lundh | 2006-05-26 | 1 | -1/+1 |
|
|
* | Typo fixes | Andrew M. Kuchling | 2006-05-26 | 1 | -1/+1 |
|
|
* | needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" | Fredrik Lundh | 2006-05-26 | 2 | -15/+31 |
|
|
* | Integrate installing a framework in the 'make install' | Ronald Oussoren | 2006-05-26 | 3 | -5/+25 |
|
|
* | - Search the sqlite specific search directories | Ronald Oussoren | 2006-05-26 | 1 | -1/+45 |
|
|
* | use Py_LOCAL also for string and unicode objects | Fredrik Lundh | 2006-05-26 | 3 | -37/+18 |
|
|
* | when generating python code prefer to generate valid python code | Jack Diederich | 2006-05-26 | 1 | -3/+3 |
|
|
* | needforspeed: added Py_LOCAL macro, based on the LOCAL macro used | Fredrik Lundh | 2006-05-26 | 2 | -53/+70 |
|
|
* | Add "partition" to UserString. | Georg Brandl | 2006-05-26 | 1 | -0/+1 |
|
|
* | Fix buglet in postinstall script, it would generate an invalid .cshrc file. | Ronald Oussoren | 2006-05-26 | 1 | -1/+1 |
|
|
* | Added split whitespace checks for characters other than space. | Andrew Dalke | 2006-05-26 | 1 | -0/+1 |
|
|
* | use Py_ssize_t in places that may need it | Jack Diederich | 2006-05-26 | 1 | -25/+25 |
|
|
* | Added a few more test cases for whitespace split. These strings have leading... | Andrew Dalke | 2006-05-26 | 1 | -0/+7 |
|
|
* | needforspeed: use Py_ssize_t for the fastsearch counter and skip | Fredrik Lundh | 2006-05-26 | 2 | -2/+2 |
|
|
* | needforspeed: use METH_O for argument handling, which made partition some | Fredrik Lundh | 2006-05-26 | 2 | -13/+4 |
|
|
* | Clarify docs for str.partition(). | Georg Brandl | 2006-05-26 | 1 | -4/+5 |
|
|
* | needforspeed: partition implementation, part two. | Fredrik Lundh | 2006-05-26 | 5 | -78/+143 |
|
|
* | Without this patch OSX users couldn't add new help sources because the code | Ronald Oussoren | 2006-05-26 | 1 | -0/+1 |
|
|
* | Add Soc student | Andrew M. Kuchling | 2006-05-26 | 1 | -4/+5 |
|
|
* | needforspeed: partition for 8-bit strings. for some simple tests, | Fredrik Lundh | 2006-05-25 | 1 | -5/+66 |
|
|
* | Patch #1494387: SVN longobject.c compiler warnings | Tim Peters | 2006-05-25 | 1 | -1/+1 |
|
|