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
*
gh-118362: Fix thread safety around lookups from the type cache in the face o...
Dino Viehland
2024-05-06
1
-2/+4
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
1
-0/+1
*
gh-112050: Make collections.deque thread-safe in free-threaded builds (#113830)
mpage
2024-02-15
1
-53/+186
*
gh-115243: Fix crash in deque.index() when the deque is concurrently modified...
kcatss
2024-02-14
1
-1/+2
*
gh-112050: Adapt collections.deque to Argument Clinic (#113963)
mpage
2024-01-29
1
-151/+261
*
gh-106320: Remove private _PyDict functions (#108449)
Victor Stinner
2023-08-24
1
-0/+1
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-4/+4
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-103092: Isolate `_collections` (#103093)
Erlend E. Aasland
2023-04-12
1
-276/+279
*
GH-100989: remove annotation from docstring (GH-102991)
Raymond Hettinger
2023-03-24
1
-2/+2
*
GH-100989: Revert Improve the accuracy of collections.deque docstrings (GH-10...
Raymond Hettinger
2023-03-24
1
-24/+13
*
gh-100989: Improve the accuracy of collections.deque docstrings (#100990)
Timo Ludwig
2023-03-22
1
-13/+24
*
gh-99845: Use size_t type in __sizeof__() methods (#99846)
Victor Stinner
2022-11-30
1
-7/+5
*
gh-99537: Use Py_SETREF() function in C code (#99656)
Victor Stinner
2022-11-22
1
-4/+1
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99466)
Victor Stinner
2022-11-14
1
-40/+20
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-3/+3
*
Remove micro-optimization that no longer shows a benefit. (GH-32397)
Raymond Hettinger
2022-04-07
1
-21/+1
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
1
-9/+6
*
bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)
Victor Stinner
2022-03-31
1
-1/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-11/+7
*
bpo-45723: Prepare support for autoconf 2.71 (GH-29441)
Christian Heimes
2021-11-08
1
-5/+0
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-0/+1
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-1/+1
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-2/+2
*
bpo-41621: Document defaultdict's default_factory parameter (GH-21945)
Dennis Sweeney
2021-06-22
1
-1/+1
*
bpo-40521: Convert deque freelist from global vars to instance vars (GH-25906)
Raymond Hettinger
2021-05-05
1
-27/+32
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
1
-1/+2
*
Revert "bpo-40521: Remove freelist from collections.deque() (GH-21073)" (GH-2...
Raymond Hettinger
2021-03-25
1
-2/+21
*
bpo-41361: Optimized argument parsing for deque_rotate (GH-24796)
Dennis Sweeney
2021-03-16
1
-1/+12
*
bpo-25246: Optimize deque.remove() (GH-23898)
Raymond Hettinger
2020-12-23
1
-32/+42
*
bpo-42161: Micro-optimize _collections._count_elements() (GH-23008)
Victor Stinner
2020-10-27
1
-4/+5
*
bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)
Victor Stinner
2020-10-27
1
-4/+7
*
bpo-40521: Remove freelist from collections.deque() (GH-21073)
Raymond Hettinger
2020-06-23
1
-21/+2
*
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
[next]