GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Objects
/
dictobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (...
Victor Stinner
2020-05-20
1
-6
/
+0
*
bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError() (GH-20018)
scoder
2020-05-11
1
-1
/
+3
*
bpo-40521: Disable free lists in subinterpreters (GH-19937)
Victor Stinner
2020-05-05
1
-4
/
+33
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-7
/
+4
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2
/
+3
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0
/
+1
*
bpo-37207: Use PEP 590 vectorcall to speed up dict() (GH-19280)
Dong-hee Na
2020-04-02
1
-0
/
+33
*
bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170)
Andy Lester
2020-03-26
1
-5
/
+5
*
bpo-36144: Dictionary Union (PEP 584) (#12088)
Brandt Bucher
2020-02-24
1
-18
/
+53
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-6
/
+6
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1
/
+1
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-1
/
+1
*
bpo-39542: Simplify _Py_NewReference() (GH-18332)
Victor Stinner
2020-02-03
1
-8
/
+18
*
bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCo...
Dong-hee Na
2019-12-31
1
-0
/
+2
*
bpo-38613: Optimize set operations of dict keys. (GH-16961)
Inada Naoki
2019-11-08
1
-21
/
+33
*
bpo-38555: Fix an undefined behavior. (GH-16883)
Serhiy Storchaka
2019-10-23
1
-8
/
+7
*
bpo-38525: Fix a segmentation fault when using reverse iterators of empty dic...
Dong-hee Na
2019-10-19
1
-2
/
+7
*
bpo-38202: Fix a crash in dict_view & non-itearble. (GH-16241)
Zackery Spytz
2019-10-13
1
-0
/
+4
*
Fix strict-aliasing rules errors on gcc 4.8.5. (GH-16714)
Dong-hee Na
2019-10-11
1
-1
/
+1
*
bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)
Victor Stinner
2019-10-07
1
-16
/
+20
*
Fix a compile warning in dictobject.c (GH-16610)
Hai Shi
2019-10-07
1
-1
/
+0
*
bpo-38210: Fix intersection operation with dict view and iterator. (GH-16602)
Dong-hee Na
2019-10-06
1
-8
/
+0
*
bpo-38219: Optimize dict creating and updating by a dict. (GH-16268)
Serhiy Storchaka
2019-09-25
1
-8
/
+13
*
bpo-37206: Unrepresentable default values no longer represented as None. (GH-...
Serhiy Storchaka
2019-09-14
1
-2
/
+2
*
Fix typo in dict object comment (#15814)
dalgarno
2019-09-10
1
-1
/
+1
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-27
1
-1
/
+1
*
bpo-27575: port set intersection logic into dictview intersection (GH-7696)
Forest Gregg
2019-08-26
1
-4
/
+77
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
1
-1
/
+1
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-4
/
+4
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-2
/
+1
*
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
Inada Naoki
2019-06-03
1
-12
/
+13
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-30
1
-14
/
+14
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
1
-2
/
+2
*
bpo-36869: fix warning of unused variables (GH-13182)
Emmanuel Arias
2019-05-10
1
-1
/
+2
*
bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)
Victor Stinner
2019-04-12
1
-59
/
+59
*
bpo-20180: Use argument clinic for dict.pop() and dict.popitem() (GH-12792)
Inada Naoki
2019-04-12
1
-34
/
+41
*
bpo-29202: improve dict iteration (GH-11900)
Cheryl Sabella
2019-04-05
1
-9
/
+6
*
bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12...
Thomas Perl
2019-04-02
1
-0
/
+12
*
bpo-36452: dictiter: track maximum iteration count (GH-12596)
Thomas Perl
2019-03-28
1
-0
/
+6
*
bpo-36412: fix a possible crash in dictobject.c's new_dict() (GH-12519)
Zackery Spytz
2019-03-24
1
-1
/
+3
*
bpo-30040: optimize inserting into empty dict (GH-12307)
Inada Naoki
2019-03-18
1
-2
/
+49
*
bpo-30040: new empty dict uses key-sharing dict (GH-1080)
Inada Naoki
2019-03-12
1
-4
/
+5
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-8
/
+35
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-1
/
+2
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-9
/
+9
*
bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)
Serhiy Storchaka
2018-11-27
1
-2
/
+2
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0
/
+1
*
bpo-35230: dict: Remove some macros (GH-10513)
INADA Naoki
2018-11-14
1
-42
/
+59
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1
/
+1
*
bpo-33462: Add __reversed__ to dict and dict views (GH-6827)
Rémi Lapeyre
2018-11-06
1
-5
/
+202
[next]