| Commit message (Expand) | Author | Age | Files | Lines |
* | Make use of METH_O and METH_NOARGS where possible. | Georg Brandl | 2006-05-29 | 1 | -1/+1 |
|
|
* | Correct some value converting strangenesses. | Georg Brandl | 2006-05-29 | 2 | -3/+3 |
|
|
* | Fix refleak in socketmodule. Replace bogus Py_BuildValue calls. | Georg Brandl | 2006-05-29 | 1 | -0/+1 |
|
|
* | Make last patch valid C89 so Windows compilers can deal with it. | Thomas Wouters | 2006-05-28 | 1 | -1/+2 |
|
|
* | use the UnicodeError traversal and clearing functions in UnicodeError | Michael W. Hudson | 2006-05-28 | 1 | -4/+4 |
|
|
* | Fix refleaks in UnicodeError get and set methods. | Georg Brandl | 2006-05-28 | 1 | -45/+56 |
|
|
* | Quality control, meet exceptions.c, round two. | Michael W. Hudson | 2006-05-28 | 1 | -222/+165 |
|
|
* | Quality control, meet exceptions.c. | Michael W. Hudson | 2006-05-28 | 1 | -128/+105 |
|
|
* | needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), | Fredrik Lundh | 2006-05-28 | 1 | -37/+37 |
|
|
* | move semicolons | Richard Jones | 2006-05-27 | 1 | -53/+51 |
|
|
* | doc string additions and tweaks | Richard Jones | 2006-05-27 | 1 | -8/+21 |
|
|
* | needforspeed: stringlib refactoring: use find_slice for stringobject | Fredrik Lundh | 2006-05-27 | 1 | -12/+15 |
|
|
* | needforspeed: stringlib refactoring: changed find_obj to find_slice, | Fredrik Lundh | 2006-05-27 | 2 | -36/+69 |
|
|
* | needforspeed: replace improvements, changed to Py_LOCAL_INLINE | Fredrik Lundh | 2006-05-27 | 6 | -41/+55 |
|
|
* | Remove spurious semicolons after macro invocations. | Georg Brandl | 2006-05-27 | 1 | -42/+42 |
|
|
* | cleanup - removed trailing whitespace | Andrew Dalke | 2006-05-27 | 1 | -1/+1 |
|
|
* | Conversion of exceptions over from faked-up classes to new-style C types. | Richard Jones | 2006-05-27 | 1 | -0/+2130 |
|
|
* | Revert bogus change committed in 46432 to this file. | Martin v. Löwis | 2006-05-27 | 1 | -1/+0 |
|
|
* | fixed typo | Andrew Dalke | 2006-05-27 | 1 | -1/+1 |
|
|
* | needforspeed: more stringlib refactoring | Fredrik Lundh | 2006-05-27 | 4 | -147/+161 |
|
|
* | Patch 1494554: Update numeric properties to Unicode 4.1. | Martin v. Löwis | 2006-05-27 | 2 | -6/+328 |
|
|
* | Fix Coverity warnings. | Neal Norwitz | 2006-05-27 | 2 | -7/+2 |
|
|
* | Added description of why splitlines doesn't use the prealloc strategy | Andrew Dalke | 2006-05-26 | 1 | -0/+8 |
|
|
* | Added limits to the replace code so it does not count all of the matching | Andrew Dalke | 2006-05-26 | 1 | -22/+19 |
|
|
* | Simplify calling. | Georg Brandl | 2006-05-26 | 1 | -8/+2 |
|
|
* | Comment typo | Andrew M. Kuchling | 2006-05-26 | 1 | -1/+1 |
|
|
* | needforspeed: stringlib refactoring: use stringlib/find for string find | Fredrik Lundh | 2006-05-26 | 3 | -30/+25 |
|
|
* | needforspeed: use a macro to fix slice indexes | Fredrik Lundh | 2006-05-26 | 1 | -52/+18 |
|
|
* | needforspeed: stringlib refactoring: use stringlib/find for unicode | Fredrik Lundh | 2006-05-26 | 1 | -14/+36 |
|
|
* | needforspeed: stringlib refactoring, continued. added count and | Fredrik Lundh | 2006-05-26 | 5 | -53/+132 |
|
|
* | substring split now uses /F's fast string matching algorithm. | Andrew Dalke | 2006-05-26 | 1 | -40/+57 |
|
|
* | needspeed: rpartition documentation, tests, and a bug fixes. | Fredrik Lundh | 2006-05-26 | 1 | -2/+2 |
|
|
* | needforspeed: added rpartition implementation | Fredrik Lundh | 2006-05-26 | 4 | -1/+154 |
|
|
* | removed unnecessary include | Fredrik Lundh | 2006-05-26 | 1 | -2/+0 |
|
|
* | needforspeed: remove remaining USE_FAST macros; if fastsearch was | Fredrik Lundh | 2006-05-26 | 1 | -67/+2 |
|
|
* | needforspeed: cleanup | Fredrik Lundh | 2006-05-26 | 1 | -4/+8 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 3 | -77/+71 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 4 | -179/+111 |
|
|
* | needforspeed: use Py_LOCAL on a few more locals in stringobject.c | Fredrik Lundh | 2006-05-26 | 1 | -26/+27 |
|
|
* | Eeked out another 3% or so performance in split whitespace by cleaning up the... | Andrew Dalke | 2006-05-26 | 1 | -35/+38 |
|
|
* | Changes to string.split/rsplit on whitespace to preallocate space in the | Andrew Dalke | 2006-05-26 | 1 | -56/+75 |
|
|
* | use Py_LOCAL also for string and unicode objects | Fredrik Lundh | 2006-05-26 | 2 | -35/+11 |
|
|
* | 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 |
|
|
* | needforspeed: partition implementation, part two. | Fredrik Lundh | 2006-05-26 | 2 | -78/+111 |
|
|
* | 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 |
|
|
* | squelch gcc4 darwin/x86 compiler warnings | Bob Ippolito | 2006-05-25 | 1 | -1/+1 |
|
|
* | needforspeed: use insert+reverse instead of append | Fredrik Lundh | 2006-05-25 | 1 | -16/+8 |
|
|
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 3 | -11/+8 |
|
|