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
/
Objects
/
setobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-84436: Implement Immortal Objects (gh-19474)
Eddie Elizondo
2023-04-22
1
-2/+3
*
gh-99845: Use size_t type in __sizeof__() methods (#99846)
Victor Stinner
2022-11-30
1
-6/+5
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
1
-2/+1
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)
Victor Stinner
2022-11-16
1
-6/+3
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99354)
Victor Stinner
2022-11-10
1
-18/+10
*
gh-90861: Memory optimization for set.issubset (gh-92799)
Dong-hee Na
2022-05-14
1
-5/+5
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
1
-9/+5
*
bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280)
Serhiy Storchaka
2022-04-06
1
-16/+23
*
bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316)
Serhiy Storchaka
2022-04-06
1
-0/+4
*
bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)
Victor Stinner
2022-03-31
1
-3/+3
*
Improve docstring for set.discard() (GH-31315)
Raymond Hettinger
2022-02-13
1
-1/+2
*
bpo-46615: Don't crash when set operations mutate the sets (GH-31120)
Dennis Sweeney
2022-02-11
1
-8/+39
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-4/+2
*
bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)
Victor Stinner
2022-01-21
1
-4/+4
*
bpo-43413: Revert changes in set.__init__ (GH-28403)
Serhiy Storchaka
2021-12-26
1
-3/+1
*
Fix typos in the Objects directory (GH-28766)
Christian Clauss
2021-10-06
1
-1/+1
*
Fix spelling error in comment (GH-28696)
Raymond Hettinger
2021-10-02
1
-1/+1
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-2/+2
*
bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...
Serhiy Storchaka
2021-09-12
1
-2/+6
*
bpo-43198: Revert 3dd2157 that removed freeslot tracking. (#25010)
Raymond Hettinger
2021-03-24
1
-1/+15
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-3/+4
*
bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)
Pablo Galindo
2021-02-20
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-3/+3
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
1
-1/+1
*
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
Raymond Hettinger
2020-06-23
1
-33/+5
*
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
Victor Stinner
2020-06-23
1
-10/+15
*
Improve code clarity for the set lookup logic (GH-20028)
Raymond Hettinger
2020-05-10
1
-125/+55
*
Remove out-of-date comment (GH-19886)
Raymond Hettinger
2020-05-03
1
-2/+1
*
Simplify set entry insertion logic. (GH-19881)
Raymond Hettinger
2020-05-03
1
-16/+2
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-6/+0
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-2/+2
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2/+1
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0/+2
*
bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053)
Dong-hee Na
2020-03-18
1
-18/+50
*
bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)
Dong-hee Na
2020-03-16
1
-0/+23
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
1
-1/+1
*
bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278)
Victor Stinner
2020-01-30
1
-1/+1
*
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka
2019-09-01
1
-2/+3
*
bpo-8425: Fast path for set inplace difference when the second set is large (...
Raymond Hettinger
2019-08-29
1
-1/+17
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-26
1
-1/+1
*
bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...
Raymond Hettinger
2019-06-11
1
-8/+0
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-8/+8
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
1
-2/+2
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-1/+2
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
Neaten the code without any algorithmic change. (GH-10466)
Raymond Hettinger
2018-11-11
1
-5/+2
*
Optimize set.pop() to advance a pointer instead of indexing. (GH-10429)
Raymond Hettinger
2018-11-09
1
-7/+8
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050)
Sergey Fedoseev
2018-10-20
1
-25/+3
[next]