| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | | Issue #20186: memoryobject.c: add function signatures. | Stefan Krah | 2014-05-17 | 1 | -5/+6 |
|
|
* | | | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() | Victor Stinner | 2014-05-14 | 2 | -42/+38 |
|
|
* | | | (Merge 3.4) Issue #21418: Fix a crash in the builtin function super() when | Victor Stinner | 2014-05-12 | 1 | -2/+9 |
|\ \ \
| |/ / |
|
| * | | Issue #21418: Fix a crash in the builtin function super() when called without | Victor Stinner | 2014-05-12 | 1 | -2/+9 |
|
|
* | | | Issue #21442: Fix MSVC compiler warning introduced by issue21377. | Zachary Ware | 2014-05-06 | 1 | -1/+1 |
|
|
* | | | Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND defined | Victor Stinner | 2014-05-06 | 1 | -3/+3 |
|
|
* | | | Issue 21101: Internal API for dict getitem and setitem where the hash value ... | Raymond Hettinger | 2014-05-03 | 1 | -0/+56 |
|
|
* | | | Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going to | Victor Stinner | 2014-05-02 | 1 | -3/+3 |
|
|
* | | | Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), | Victor Stinner | 2014-05-02 | 3 | -45/+167 |
|
|
* | | | Issue #21377: PyBytes_Concat() now tries to concatenate in-place when the fir... | Antoine Pitrou | 2014-05-01 | 1 | -4/+39 |
|
|
* | | | sprinkle some _PyId goodness around moduleobject.c | Benjamin Peterson | 2014-04-24 | 1 | -9/+19 |
|
|
* | | | do not override errors from descriptors on modules | Benjamin Peterson | 2014-04-24 | 1 | -10/+9 |
|
|
* | | | Issue8297: module attribute lookup failures now include module name in error ... | Ethan Furman | 2014-04-24 | 1 | -2/+26 |
|
|
* | | | Merge typo fix from 3.4 | Zachary Ware | 2014-04-18 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | Fix a typo in the docstring of nb_index. | Zachary Ware | 2014-04-18 | 1 | -1/+1 |
|
|
* | | | Merge typo fix from 3.4 | Zachary Ware | 2014-04-18 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | Fix a typo in the signature for object.__ge__ | Zachary Ware | 2014-04-18 | 1 | -1/+1 |
|
|
| * | | Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format | Victor Stinner | 2014-04-04 | 1 | -1/+1 |
|
|
* | | | Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeErr... | Mark Dickinson | 2014-04-11 | 1 | -1/+1 |
|
|
* | | | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) | Benjamin Peterson | 2014-04-10 | 3 | -0/+26 |
|
|
* | | | Issue #21118: PyLong_AS_LONG() result type is long | Victor Stinner | 2014-04-08 | 1 | -1/+1 |
|
|
* | | | fix reference leaks in the translate fast path (closes #21175) | Benjamin Peterson | 2014-04-08 | 1 | -14/+8 |
|
|
* | | | Issue #21118: Optimize also str.translate() for ASCII => ASCII deletion | Victor Stinner | 2014-04-05 | 1 | -19/+29 |
|
|
* | | | Issue #21118: Add unit test for invalid character replacement (code point hig... | Victor Stinner | 2014-04-05 | 1 | -10/+10 |
|
|
* | | | Issue #21118: Optimize str.translate() for ASCII => ASCII translation | Victor Stinner | 2014-04-05 | 1 | -1/+120 |
|
|
* | | | Issue #21118: Remove unused variable | Victor Stinner | 2014-04-04 | 1 | -1/+0 |
|
|
* | | | Issue #21118: Use _PyUnicodeWriter API in str.translate() to simplify and | Victor Stinner | 2014-04-04 | 1 | -171/+95 |
|
|
* | | | Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format | Victor Stinner | 2014-04-04 | 1 | -1/+1 |
|
|
* | | | merge 3.4 (#21134) | Benjamin Peterson | 2014-04-02 | 1 | -0/+12 |
|\ \ \
| |/ / |
|
| * | | bail in unicode error's __str__ methods if the objects are not properly initi... | Benjamin Peterson | 2014-04-02 | 1 | -0/+12 |
|
|
* | | | Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. | Antoine Pitrou | 2014-03-31 | 1 | -0/+2 |
|\ \ \
| |/ / |
|
| * | | Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. | Antoine Pitrou | 2014-03-31 | 1 | -0/+2 |
|
|
* | | | merge 3.4 | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
|\ \ \
| |/ / |
|
| * | | merge 3.3 | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
| |\ \
| | |/ |
|
| | * | merge 3.2 | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
| | |\ |
|
| | | * | fix expandtabs overflow detection to be consistent and not rely on signed ove... | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
|
|
| | | * | #17296: backport fix for issue 1692335, naive exception pickling. | R David Murray | 2013-02-27 | 1 | -1/+10 |
|
|
* | | | | Issue19995: more informative error message; spelling corrections; use operato... | Ethan Furman | 2014-03-21 | 1 | -5/+20 |
|
|
* | | | | Issue19995: passing a non-int to %o, %c, %x, or %X now raises an exception | Ethan Furman | 2014-03-19 | 1 | -26/+2 |
|
|
* | | | | Issue #20574: Implement incremental decoder for cp65001 code | Victor Stinner | 2014-03-17 | 1 | -32/+9 |
|/ / / |
|
* | | | correct the fix for #20637; allow slot descriptor inheritance to take place b... | Benjamin Peterson | 2014-03-17 | 1 | -9/+8 |
|
|
* | | | merge 3.3 | Benjamin Peterson | 2014-03-15 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | avoid referencing past the bounds of an array | Benjamin Peterson | 2014-03-15 | 1 | -1/+1 |
|
|
* | | | merge 3.3 | Benjamin Peterson | 2014-03-15 | 2 | -2/+3 |
|\ \ \
| |/ / |
|
| * | | avoid referencing out-of-bounds memory | Benjamin Peterson | 2014-03-15 | 1 | -1/+1 |
|
|
| * | | fix c89 declaration order | Benjamin Peterson | 2014-03-15 | 1 | -1/+2 |
|
|
* | | | merge 3.3 | Benjamin Peterson | 2014-03-15 | 1 | -1/+2 |
|\ \ \
| |/ / |
|
| * | | don't do pointer arithmetic with signed numbers | Benjamin Peterson | 2014-03-15 | 1 | -1/+2 |
|
|
* | | | Make the various iterators' "setstate" sliently and consistently clip the | Kristján Valur Jónsson | 2014-03-05 | 6 | -15/+52 |
|\ \ \
| |/ / |
|
| * | | Make the various iterators' "setstate" sliently and consistently clip the | Kristján Valur Jónsson | 2014-03-05 | 6 | -15/+52 |
|
|