| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748) | Serhiy Storchaka | 2018-11-27 | 1 | -1/+1 |
| | | | | | (cherry picked from commit 81524022d0c0df7a41f9b2b2df41e2ebe140e610) | ||||
| * | bpo-33029: Fix signatures of getter and setter functions. (GH-10746) | Miss Islington (bot) | 2018-11-27 | 1 | -1/+1 |
| | | | | | | | Fix also return type for few other functions (clear, releasebuffer). (cherry picked from commit d4f9cf5545d6d8844e0726552ef2e366f5cc3abd) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> | ||||
| * | closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ↵ | Miss Islington (bot) | 2018-09-11 | 1 | -4/+13 |
| | | | | | | | | with a bad __new__(). (GH-3788) (cherry picked from commit 24bd50bdcc97d65130c07d6cd26085fd06c3e972) Co-authored-by: Oren Milman <orenmn@gmail.com> | ||||
| * | bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) | Miss Islington (bot) | 2018-05-31 | 1 | -3/+4 |
| | | | | | | (cherry picked from commit a5c42284e69fb309bdd17ee8c1c120d1be383012) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> | ||||
| * | bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ↵ | Serhiy Storchaka | 2018-01-25 | 1 | -5/+3 |
| | | | | | | (GH-5222) Add two new private APIs: _PyObject_LookupAttr() and _PyObject_LookupAttrId() | ||||
| * | bpo-32240: Add the const qualifier to declarations of PyObject* array ↵ | Serhiy Storchaka | 2017-12-15 | 1 | -3/+3 |
| | | | | | arguments. (#4746) | ||||
| * | bpo-31586: Use _count_element fast path for real dicts. | Oren Milman | 2017-09-27 | 1 | -1/+3 |
| | | |||||
| * | bpo-27541: Reprs of subclasses of some classes now contain actual type name. ↵ | Serhiy Storchaka | 2017-09-21 | 1 | -4/+7 |
| | | | | | | (#3631) Affected classes are bytearray, array, deque, defaultdict, count and repeat. | ||||
| * | Code clean-up. Remove unnecessary pre-increment before the loop starts. (#3312) | Raymond Hettinger | 2017-09-04 | 1 | -17/+10 |
| | | |||||
| * | bpo-31095: fix potential crash during GC (GH-2974) | INADA Naoki | 2017-08-24 | 1 | -0/+4 |
| | | |||||
| * | bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) | Serhiy Storchaka | 2017-07-03 | 1 | -15/+3 |
| | | | | | | the bare METH_FASTCALL be used for functions with positional-only parameters. | ||||
| * | bpo-29935: Fixed error messages in the index() method of tuple, list and ↵ | Serhiy Storchaka | 2017-03-30 | 1 | -2/+2 |
| | | | | | | deque (#887) when pass indices of wrong type. | ||||
| * | bpo-29878: Add global instances of int for 0 and 1. (#852) | Serhiy Storchaka | 2017-03-30 | 1 | -16/+4 |
| | | |||||
| * | bpo-29634: Reduce deque repeat execution when maxlen exist and size is not 1 ↵ | Louie Lu | 2017-02-24 | 1 | -0/+4 |
| | | | | | (#255) (#255) | ||||
| * | Optimize deque index, insert and rotate() methods | Victor Stinner | 2017-02-06 | 1 | -11/+29 |
| | | | | | | | | | | | | Issue #29452: Use METH_FASTCALL calling convention for index(), insert() and rotate() methods of collections.deque to avoid the creation a temporary tuple to pass position arguments. Speedup on deque methods: * d.rotate(): 1.10x faster * d.rotate(1): 1.24x faster * d.insert(): 1.18x faster * d.index(): 1.24x faster | ||||
| * | Fix typo | Raymond Hettinger | 2017-01-13 | 1 | -1/+1 |
| | | |||||
| * | Issue #28858: Remove _PyObject_CallArg1() macro | Victor Stinner | 2016-12-05 | 1 | -1/+2 |
| | | | | | | | | | | | | Replace _PyObject_CallArg1(func, arg) with PyObject_CallFunctionObjArgs(func, arg, NULL) Using the _PyObject_CallArg1() macro increases the usage of the C stack, which was unexpected and unwanted. PyObject_CallFunctionObjArgs() doesn't have this issue. | ||||
| * | Replace PyObject_CallFunction() with fastcall | Victor Stinner | 2016-12-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Replace PyObject_CallFunction(func, "O", arg) and PyObject_CallFunction(func, "O", arg, NULL) with _PyObject_CallArg1(func, arg) Replace PyObject_CallFunction(func, NULL) with _PyObject_CallNoArg(func) _PyObject_CallNoArg() and _PyObject_CallArg1() are simpler and don't allocate memory on the C stack. | ||||
| * | Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as | Serhiy Storchaka | 2016-11-06 | 1 | -0/+2 |
| | | | | | PyDict_GetItemWithError(). Patch by Xiang Zhang. | ||||
| * | Revert part of 3471a3515827 that caused a performance regression | Raymond Hettinger | 2016-09-12 | 1 | -8/+44 |
| | | |||||
| * | Avoid inefficient way to call functions without argument | Victor Stinner | 2016-09-06 | 1 | -1/+1 |
| | | | | | | | Don't pass "()" format to PyObject_CallXXX() to call a function without argument: pass NULL as the format string instead. It avoids to have to parse a string to produce 0 argument. | ||||
| * | - Modules/_collectionsmodule.c: Mark one more internal symbol as static. | doko@ubuntu.com | 2016-06-14 | 1 | -1/+1 |
| | | |||||
| * | - make some internal symbols static | doko@ubuntu.com | 2016-05-17 | 1 | -1/+1 |
| | | |||||
| * | Issue #26482: Allowed pickling recursive dequeues. | Serhiy Storchaka | 2016-03-06 | 1 | -18/+18 |
| | | |||||
| * | More logicial order. Move space saving step to just before it is used. | Raymond Hettinger | 2016-03-04 | 1 | -14/+14 |
| | | |||||
| * | Factor-out common subexpression. | Raymond Hettinger | 2016-03-02 | 1 | -3/+3 |
| | | |||||
| * | Put block length computations in a more logical order. | Raymond Hettinger | 2016-03-02 | 1 | -2/+2 |
| | | |||||
| * | Issue #26200: The SETREF macro adds unnecessary work in some cases. | Raymond Hettinger | 2016-02-09 | 1 | -1/+4 |
| | | |||||
| * | merge | Raymond Hettinger | 2016-02-02 | 1 | -5/+2 |
| | | |||||
| * | merge | Raymond Hettinger | 2016-01-27 | 1 | -0/+7 |
| |\ | |||||
| | * | Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen | Raymond Hettinger | 2016-01-27 | 1 | -0/+7 |
| | | | |||||
| * | | Convert another post-decrement while-loop to pre-decrement for consistency | Raymond Hettinger | 2016-01-24 | 1 | -1/+2 |
| | | | | | | | | | and better generated code (on both GCC and CLang). | ||||
| * | | Convert two other post-decrement while-loops to pre-decrements for consistency | Raymond Hettinger | 2016-01-24 | 1 | -2/+4 |
| | | | | | | | | | and for better code generation. | ||||
| * | | Miscellaneous refactorings | Raymond Hettinger | 2016-01-24 | 1 | -65/+58 |
| | | | | | | | | | | | | | | | | | * Add comment to the maxlen structure entry about the meaning of maxlen == -1 * Factor-out code common to deque_append(left) and deque_extend(left) * Factor inner-loop in deque_clear() to use only 1 test per loop instead of 2 * Tighten inner-loops for deque_item() and deque_ass_item() so that the compiler can combine the decrement and test into a single step. | ||||
| * | | merge 3.5 | Benjamin Peterson | 2016-01-01 | 1 | -2/+0 |
| |\ \ | |/ | |||||
| | * | merge 3.4 | Benjamin Peterson | 2016-01-01 | 1 | -2/+0 |
| | |\ | |||||
| | | * | merge 3.3 | Benjamin Peterson | 2016-01-01 | 1 | -2/+0 |
| | | |\ | |||||
| | | | * | remove some copyright notices supserseded by the toplevel ones | Benjamin Peterson | 2016-01-01 | 1 | -2/+0 |
| | | | | | |||||
| * | | | | Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. | Serhiy Storchaka | 2015-12-27 | 1 | -4/+1 |
| | | | | | | | | | | | | | | | | | | | | | Old code is correct, but with Py_SETREF and Py_CLEAR it can be cleaner. This patch doesn't fix bugs and hence there is no need to backport it. | ||||
| * | | | | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
| |\ \ \ \ | |/ / / | | | | | | | | | | | | | This allows sys.getsize() to work correctly with their subclasses with __slots__ defined. | ||||
| | * | | | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | This allows sys.getsize() to work correctly with their subclasses with __slots__ defined. | ||||
| * | | | | Neaten-up the inner-loop logic. | Raymond Hettinger | 2015-11-04 | 1 | -3/+3 |
| | | | | | |||||
| * | | | | Minor cleanup. | Raymond Hettinger | 2015-11-02 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | merge | Raymond Hettinger | 2015-11-02 | 1 | -1/+1 |
| |\ \ \ \ | |||||
| | * \ \ \ | Issue #25523: Merge a-to-an corrections from 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | |\ \ \ \ | | |/ / / | |||||
| | | * | | | Issue #25523: Further a-to-an corrections new in 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | | | | | | |||||
| | | * | | | Backport early-out 91259f061cfb to reduce the cost of bb1a2944bcb6 | Raymond Hettinger | 2015-10-07 | 1 | -1/+5 |
| | | | | | | |||||
| * | | | | | Move the initial start-search out of the main loop so it can be factored-out ↵ | Raymond Hettinger | 2015-11-02 | 1 | -16/+27 |
| |/ / / / | | | | | | | | | | | | | later. | ||||
| * | | | | Removed unused parameter | Raymond Hettinger | 2015-10-23 | 1 | -10/+10 |
| | | | | | |||||
| * | | | | Only update the state variable once per iteration. | Raymond Hettinger | 2015-10-20 | 1 | -4/+8 |
| | | | | | |||||
