| Commit message (Expand) | Author | Age | Files | Lines |
* | get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. | Gregory P. Smith | 2008-04-10 | 3 | -3/+0 |
|
|
* | Raise SystemError when size < 0 is passed into PyString_FromStringAndSize, | Gregory P. Smith | 2008-04-09 | 3 | -0/+18 |
|
|
* | Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. | Martin v. Löwis | 2008-04-07 | 3 | -6/+25 |
|
|
* | Make file objects as thread safe as the underlying libc FILE* implementation. | Gregory P. Smith | 2008-04-06 | 1 | -81/+164 |
|
|
* | Fix compiler warning about finite() missing on Solaris. | Neal Norwitz | 2008-03-28 | 2 | -0/+8 |
|
|
* | Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. | Neal Norwitz | 2008-03-28 | 2 | -7/+7 |
|
|
* | Pluralss only need one s, not 2 (intss -> ints) | Neal Norwitz | 2008-03-27 | 2 | -2/+2 |
|
|
* | Fix warnings about using char as an array subscript. This is not portable | Neal Norwitz | 2008-03-27 | 2 | -7/+7 |
|
|
* | Fix memory leaks | Neal Norwitz | 2008-03-27 | 1 | -2/+6 |
|
|
* | Fix bytes so it works on 64-bit platforms. | Neal Norwitz | 2008-03-27 | 1 | -14/+5 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 9 | -2/+4489 |
|
|
* | Move declarations to block start. | Georg Brandl | 2008-03-25 | 1 | -4/+4 |
|
|
* | Fix tabs. | Georg Brandl | 2008-03-25 | 2 | -2/+2 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 9 | -33/+42 |
|
|
* | #2355: py3k warning for buffer(). | Georg Brandl | 2008-03-25 | 1 | -0/+5 |
|
|
* | Try to fix a bunch of compiler warnings on Win64. | Neal Norwitz | 2008-03-25 | 1 | -1/+1 |
|
|
* | Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4... | Amaury Forgeot d'Arc | 2008-03-24 | 1 | -1/+1 |
|
|
* | #1477: ur'\U0010FFFF' raised in narrow unicode builds. | Amaury Forgeot d'Arc | 2008-03-23 | 1 | -4/+42 |
|
|
* | Remove compiler warnings (on Alpha at least) about using chars as | Neal Norwitz | 2008-03-23 | 1 | -4/+4 |
|
|
* | #2348: add py3k warning for file.softspace. | Georg Brandl | 2008-03-21 | 1 | -2/+34 |
|
|
* | #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack ... | Georg Brandl | 2008-03-21 | 2 | -1/+18 |
|
|
* | Remove unnecessary traceback save/restore pair. | Raymond Hettinger | 2008-03-19 | 1 | -4/+2 |
|
|
* | Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. | Raymond Hettinger | 2008-03-19 | 1 | -1/+1 |
|
|
* | Fix compiler warning. | Raymond Hettinger | 2008-03-19 | 1 | -1/+1 |
|
|
* | Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). | Raymond Hettinger | 2008-03-18 | 1 | -0/+5 |
|
|
* | Speed-up isinstance() for one easy case. | Raymond Hettinger | 2008-03-18 | 1 | -0/+5 |
|
|
* | Add py3k warnings for code and method inequality comparisons. This should res... | Steven Bethard | 2008-03-18 | 2 | -2/+102 |
|
|
* | cell_compare needs to return -2 instead of NULL. | Steven Bethard | 2008-03-18 | 1 | -1/+1 |
|
|
* | Add py3k warnings for object, type, cell and dict comparisons. This should re... | Steven Bethard | 2008-03-18 | 4 | -3/+67 |
|
|
* | Remove all traces of HAVE_STRERROR. | Brett Cannon | 2008-03-18 | 1 | -8/+0 |
|
|
* | Issue 2332: add new attribute names for instance method objects | Neal Norwitz | 2008-03-18 | 1 | -0/+4 |
|
|
* | Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje... | Travis E. Oliphant | 2008-03-18 | 2 | -0/+374 |
|
|
* | - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on | Guido van Rossum | 2008-03-18 | 1 | -0/+12 |
|
|
* | Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. | Jeffrey Yasskin | 2008-03-18 | 2 | -2/+2 |
|
|
* | Fix the IOError message text when opening a file with an invalid filename. | Gregory P. Smith | 2008-03-18 | 1 | -2/+5 |
|
|
* | Issue 2321: reduce memory usage (increase the memory that is returned | Neal Norwitz | 2008-03-17 | 1 | -17/+21 |
|
|
* | Finished backporting PEP 3127, Integer Literal Support and Syntax. | Eric Smith | 2008-03-17 | 1 | -1/+14 |
|
|
* | Issue 2264: empty float presentation type needs to have at least one digit pa... | Eric Smith | 2008-03-17 | 1 | -1/+6 |
|
|
* | Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently | Mark Dickinson | 2008-03-14 | 1 | -8/+8 |
|
|
* | Fix the overflows in expandtabs(). "This time for sure!" | Guido van Rossum | 2008-03-11 | 2 | -50/+65 |
|
|
* | Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, | Jeffrey Yasskin | 2008-02-28 | 1 | -0/+103 |
|
|
* | Corrected assert to check for correct type in py3k. | Eric Smith | 2008-02-24 | 1 | -1/+1 |
|
|
* | Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. | Christian Heimes | 2008-02-24 | 2 | -4/+8 |
|
|
* | Issue 1742669. Now %d accepts very big float numbers. | Facundo Batista | 2008-02-24 | 2 | -29/+88 |
|
|
* | #2067: file.__exit__() now calls subclasses' close() method. | Georg Brandl | 2008-02-23 | 1 | -2/+2 |
|
|
* | Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma... | Eric Smith | 2008-02-20 | 1 | -40/+15 |
|
|
* | Added code to correct combining str and unicode in ''.format(). Added test c... | Eric Smith | 2008-02-18 | 1 | -0/+16 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 11 | -23/+2606 |
|
|
* | Prevent a crash with nested scopes, again caused by calling Py_DECREF when th... | Amaury Forgeot d'Arc | 2008-02-16 | 1 | -1/+3 |
|
|
* | Issue #2115: __slot__ attributes setting was 10x slower. | Amaury Forgeot d'Arc | 2008-02-15 | 1 | -1/+1 |
|
|