| Commit message (Expand) | Author | Age | Files | Lines |
* | changed count to return 0 for slices outside the source string | Fredrik Lundh | 2006-05-30 | 1 | -1/+1 |
|
|
* | changed find/rfind to return -1 for matches outside the source string | Fredrik Lundh | 2006-05-30 | 1 | -10/+11 |
|
|
* | PyLong_FromString(): Continued fraction analysis (explained in | Tim Peters | 2006-05-30 | 1 | -3/+74 |
|
|
* | Do the check for no keyword arguments in __init__ so that | Georg Brandl | 2006-05-30 | 1 | -3/+3 |
|
|
* | Disallow keyword args for exceptions. | Georg Brandl | 2006-05-30 | 1 | -0/+3 |
|
|
* | Add a test case for exception pickling. args is never NULL. | Georg Brandl | 2006-05-30 | 1 | -11/+8 |
|
|
* | Restore exception pickle support. #1497319. | Georg Brandl | 2006-05-30 | 1 | -1/+11 |
|
|
* | dict_print(): So that Neal & I don't spend the rest of | Tim Peters | 2006-05-30 | 1 | -4/+5 |
|
|
* | dict_print(): Explicitly narrow the return value | Tim Peters | 2006-05-30 | 1 | -1/+1 |
|
|
* | No DOWNCAST is required since sizeof(Py_ssize_t) >= sizeof(int) and Py_ReprEn... | Neal Norwitz | 2006-05-30 | 1 | -1/+1 |
|
|
* | Use Py_SAFE_DOWNCAST for safety. Fix format strings. Remove 2 more stray | ... | Neal Norwitz | 2006-05-30 | 1 | -6/+6 |
|
|
* | Remove stray | in comment | Neal Norwitz | 2006-05-30 | 1 | -1/+1 |
|
|
* | Convert relevant dict internals to Py_ssize_t. | Tim Peters | 2006-05-30 | 1 | -43/+55 |
|
|
* | fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on | Fredrik Lundh | 2006-05-29 | 1 | -1/+4 |
|
|
* | 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 |
|
|