| Commit message (Expand) | Author | Age | Files | Lines |
* | In format strings slinging Py_ssize_t, unconditionally | Tim Peters | 2006-03-28 | 1 | -22/+9 |
|
|
* | Try to get rid of a Coverity warning by consistently using origpending. | Neal Norwitz | 2006-03-28 | 1 | -1/+1 |
|
|
* | Make itertools.tee and its internal teedataobject participate in GC. This | Thomas Wouters | 2006-03-27 | 1 | -19/+71 |
|
|
* | Fix reference leaks introduced by the recent incremental codec | Hye-Shik Chang | 2006-03-27 | 2 | -41/+52 |
|
|
* | Years in the making. | Tim Peters | 2006-03-26 | 1 | -5/+5 |
|
|
* | Utilize %zd for Py_ssize_t formatting instead of casting to long. | Hye-Shik Chang | 2006-03-26 | 1 | -4/+4 |
|
|
* | Allow long objects as a position value of error callbacks returned. | Hye-Shik Chang | 2006-03-26 | 1 | -8/+12 |
|
|
* | Patch #1443155: Add the incremental codecs support for CJK codecs. | Hye-Shik Chang | 2006-03-26 | 3 | -316/+826 |
|
|
* | Try to fix broken compile on openbsd. | Neal Norwitz | 2006-03-26 | 1 | -4/+4 |
|
|
* | Fix some int/Py_ssize_t issues which led to compiler warnings | Thomas Heller | 2006-03-22 | 1 | -6/+6 |
|
|
* | Include <malloc.h> on windows, to avoid warnings when compiling with mingw. | Thomas Heller | 2006-03-22 | 4 | -45/+52 |
|
|
* | Try to repair at least one segfault on the Mac buildbot, | Tim Peters | 2006-03-21 | 1 | -12/+42 |
|
|
* | Avoid a potential double-free bug. | Thomas Heller | 2006-03-20 | 2 | -2/+3 |
|
|
* | Apply patch from Martin v. Loewis: Avoid function pointer casts. | Thomas Heller | 2006-03-20 | 2 | -34/+34 |
|
|
* | Damn Coverity. I can't even sneak in a leak any more. :-) | Neal Norwitz | 2006-03-20 | 1 | -1/+1 |
|
|
* | Fix another bug found by Coverty. | Thomas Heller | 2006-03-20 | 1 | -1/+1 |
|
|
* | Fix bug found by Coverty. | Thomas Heller | 2006-03-20 | 1 | -1/+1 |
|
|
* | Accessing unaligned structure fields works now on all architectures. | Thomas Heller | 2006-03-20 | 1 | -46/+104 |
|
|
* | The helper is only necessary for wait3/4. | Neal Norwitz | 2006-03-20 | 1 | -0/+2 |
|
|
* | Try to cleanup a lot of boilerplate #ifdef wrt wait types and make the code | Neal Norwitz | 2006-03-20 | 1 | -143/+47 |
|
|
* | Make some functions static, reformat function decl to be consistent and check... | Neal Norwitz | 2006-03-20 | 1 | -7/+10 |
|
|
* | Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Sch... | Neal Norwitz | 2006-03-20 | 1 | -0/+128 |
|
|
* | replace use of int16_t with a (typedef'd) short, to fix Windows buildbots. | Anthony Baxter | 2006-03-20 | 1 | -1199/+1201 |
|
|
* | SF [ 1231053 ] audioop - alaw encoding/decoding added, code updated | Anthony Baxter | 2006-03-20 | 1 | -91/+305 |
|
|
* | SF #1445431, fix some leaks in error conditions. | Neal Norwitz | 2006-03-20 | 2 | -13/+19 |
|
|
* | Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() | Neal Norwitz | 2006-03-20 | 1 | -4/+9 |
|
|
* | Use macro versions instead of function versions when we already know the type. | Neal Norwitz | 2006-03-20 | 1 | -1/+1 |
|
|
* | Add tests for the C APIs PyCodec_IncrementalEncoder() and | Walter Dörwald | 2006-03-18 | 1 | -0/+24 |
|
|
* | Fix compiler warning. | Thomas Heller | 2006-03-18 | 1 | -1/+1 |
|
|
* | RFE #567972: Socket objects' family, type and proto properties are | Georg Brandl | 2006-03-17 | 1 | -1/+10 |
|
|
* | Fix some missing checks after PyTuple_New, PyList_New, PyDict_New | Georg Brandl | 2006-03-17 | 4 | -5/+19 |
|
|
* | Merge changes from the upstream version: | Thomas Heller | 2006-03-17 | 2 | -76/+81 |
|
|
* | Fix a leak that would happen under error conditions (found by Coverty). | Thomas Heller | 2006-03-16 | 1 | -0/+1 |
|
|
* | Use int 0 as default defval for LCID if nothing has been supplied. | Thomas Heller | 2006-03-16 | 1 | -3/+8 |
|
|
* | Fix compiler warning. | Thomas Heller | 2006-03-16 | 1 | -1/+1 |
|
|
* | Fixes from Neal Norwitz, plus other small fixes. | Thomas Heller | 2006-03-16 | 1 | -8/+18 |
|
|
* | Rewrite the AllocFunctionCallback function for better error handling. | Thomas Heller | 2006-03-16 | 1 | -15/+16 |
|
|
* | Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. | Neal Norwitz | 2006-03-16 | 3 | -2939/+0 |
|
|
* | Rename sre.py -> re.py | Neal Norwitz | 2006-03-16 | 1 | -2/+4 |
|
|
* | SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError | Walter Dörwald | 2006-03-15 | 1 | -1/+2 |
|
|
* | Backport from upstream version: compatibility with older Python | Thomas Heller | 2006-03-15 | 3 | -4/+35 |
|
|
* | Implement PEP 338 which has been marked as accepted by GvR | Nick Coghlan | 2006-03-15 | 1 | -42/+37 |
|
|
* | Revert rev 43041, which introduced the "z" format qualifier | Tim Peters | 2006-03-15 | 1 | -4/+4 |
|
|
* | CField_repr(): PyString_FromFormat() understands the | Tim Peters | 2006-03-15 | 1 | -4/+4 |
|
|
* | Move test code out of xxmodule and into _testcapimodule.c where it belongs. | Neal Norwitz | 2006-03-15 | 2 | -14/+13 |
|
|
* | Try to avoid many of the compiler warnings when compiling libffi by | Thomas Heller | 2006-03-14 | 1 | -3/+3 |
|
|
* | Cast an Py_ssize_t to int, to avoid a compiler warning. | Thomas Heller | 2006-03-14 | 1 | -2/+2 |
|
|
* | Integrate patch from Neal Norwitz. He writes: | Thomas Heller | 2006-03-14 | 3 | -56/+60 |
|
|
* | Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and | Neal Norwitz | 2006-03-14 | 1 | -0/+14 |
|
|
* | Bug #1448490: Fix a bug that ISO-2022 codecs could not handle | Hye-Shik Chang | 2006-03-13 | 1 | -1/+1 |
|
|