index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_collectionsmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40277: Add a repr() to namedtuple's _tuplegetter to aid with introspectio...
Ammar Askar
2020-04-15
1
-1/+9
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-2/+2
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0/+4
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-11/+3
*
bpo-1635741: Port _collections module to multiphase initialization (GH-19074)
Dong-hee Na
2020-03-19
1
-42/+42
*
Simplify defaultdict.__or__ (#18931)
Brandt Bucher
2020-03-12
1
-5/+1
*
bpo-36144: Implement defaultdict union (GH-18729)
Brandt Bucher
2020-03-06
1
-6/+45
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-1/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1/+1
*
bpo-39590: make deque.__contains__ and deque.count hold strong references (GH...
sweeneyde
2020-02-09
1
-0/+4
*
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner
2020-02-07
1
-8/+8
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
1
-2/+2
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-1/+1
*
bpo-37493: use _PyObject_CallNoArg in more places (GH-14575)
Jeroen Demeyer
2019-07-04
1
-1/+1
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-2/+1
*
bpo-37165: Convert _count_elements to the argument clinic (GH-13848)
Raymond Hettinger
2019-06-05
1
-11/+16
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-10/+10
*
bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)
Serhiy Storchaka
2019-03-13
1
-1/+1
*
Fix the C function signature for _collections._tuplegetter.__reduce__. (GH-12...
Serhiy Storchaka
2019-03-05
1
-2/+2
*
bpo-33012: Fix compilation warnings in memoryobject.c and _collectionsmodule....
Stéphane Wirtel
2019-03-05
1
-1/+1
*
bpo-36068: Make _tuplegetter objects serializable (GH-11981)
Joe Jevnik
2019-02-21
1
-1/+12
*
Speed-up argument parsing for common cases in deque.__init__()(GH-11717)
Raymond Hettinger
2019-02-01
1
-3/+7
*
bpo-32492: Tweak _collections._tuplegetter. (GH-11367)
Serhiy Storchaka
2018-12-31
1
-8/+8
*
bpo-32492: 1.6x speed up in namedtuple attribute access using C fast-path (#1...
Pablo Galindo
2018-12-30
1
-0/+163
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-3/+3
*
bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
Minor performance tweak for deque.index() with a start argument (GH-9440)
Raymond Hettinger
2018-09-21
1
-2/+4
*
closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...
Oren Milman
2018-09-11
1
-4/+13
*
Factor-out two substantially identical code blocks. (GH-8219)
Raymond Hettinger
2018-07-10
1
-46/+10
*
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)
Serhiy Storchaka
2018-05-31
1
-3/+4
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-13/+13
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-5/+3
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-3/+3
*
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
*
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
*
bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...
Serhiy Storchaka
2017-03-30
1
-2/+2
*
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
*
Optimize deque index, insert and rotate() methods
Victor Stinner
2017-02-06
1
-11/+29
*
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_CallFunction() with fastcall
Victor Stinner
2016-12-01
1
-1/+1
*
Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as
Serhiy Storchaka
2016-11-06
1
-0/+2
*
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
*
- Modules/_collectionsmodule.c: Mark one more internal symbol as static.
doko@ubuntu.com
2016-06-14
1
-1/+1
[next]