| Commit message (Expand) | Author | Age | Files | Lines |
* | Bug #1502805: don't alias file.__exit__ to file.close since the | Georg Brandl | 2006-06-08 | 1 | -1/+18 |
|
|
* | (arre, arigo) SF bug #1350060 | Armin Rigo | 2006-06-08 | 2 | -10/+33 |
|
|
* | Fix coding style guide bug. | Brett Cannon | 2006-06-06 | 1 | -1/+2 |
|
|
* | Repair refleaks in unicodeobject. | Georg Brandl | 2006-06-04 | 1 | -0/+3 |
|
|
* | Patch #1359618: Speed-up charmap encoder. | Martin v. Löwis | 2006-06-04 | 1 | -49/+285 |
|
|
* | SF #1499797, Fix for memory leak in WindowsError_str | Neal Norwitz | 2006-06-04 | 1 | -1/+0 |
|
|
* | _PyObject_DebugMalloc(): The return value should add | Tim Peters | 2006-06-04 | 1 | -1/+1 |
|
|
* | In a PYMALLOC_DEBUG build obmalloc adds extra debugging info | Tim Peters | 2006-06-04 | 1 | -116/+124 |
|
|
* | Fix memory leak found by valgrind. | Neal Norwitz | 2006-06-02 | 1 | -1/+0 |
|
|
* | Armin committed his patch while I was reviewing it (I'm sure | Tim Peters | 2006-06-01 | 1 | -28/+40 |
|
|
* | [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). | Armin Rigo | 2006-06-01 | 1 | -50/+107 |
|
|
* | Correctly allocate complex types with tp_alloc. (bug #1498638) | Georg Brandl | 2006-06-01 | 1 | -2/+2 |
|
|
* | Correctly unpickle 2.4 exceptions via __setstate__ (patch #1498571) | Georg Brandl | 2006-06-01 | 1 | -0/+24 |
|
|
* | Remove ; at end of macro. There was a compiler recently that warned | Neal Norwitz | 2006-06-01 | 1 | -1/+1 |
|
|
* | 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 |
|
|