Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
17b4733f2ff0a4abc06e8c745755c06fc32942dd
/
Objects
17b4733
bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265)
by Serhiy Storchaka
· 5 years ago
ce10554
bpo-37207: Use vectorcall for list() (GH-18928)
by Petr Viktorin
· 5 years ago
62d21c9
bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170)
by Andy Lester
· 5 years ago
87d3b9d
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
by Victor Stinner
· 5 years ago
05e4a29
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
by Dong-hee Na
· 5 years ago
1c60567
bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053)
by Dong-hee Na
· 5 years ago
2fe815e
bpo-38373: Change list overallocating strategy. (GH-18952)
by Serhiy Storchaka
· 5 years ago
5b1ef20
bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)
by Victor Stinner
· 5 years ago
6ff79f65
bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)
by Dong-hee Na
· 5 years ago
87ec86c
bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)
by Dong-hee Na
· 5 years ago
c98f87f
bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986)
by Dong-hee Na
· 5 years ago
c81609e
Fix a possible refleak in tupleobject.c (GH-19018)
by Hai Shi
· 5 years ago
3a8c562
Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)
by Inada Naoki
· 5 years ago
c7ad974
bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)
by Inada Naoki
· 5 years ago
ff4584c
bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978)
by Victor Stinner
· 5 years ago
6d674a1
bpo-36144: OrderedDict Union (PEP 584) (#18967)
by Brandt Bucher
· 5 years ago
38965ec
bpo-39947: Hide implementation detail of trashcan macros (GH-18971)
by Victor Stinner
· 5 years ago
9ee88cd
bpo-37207: Use PEP 590 vectorcall to speed up tuple() (GH-18936)
by Dong-hee Na
· 5 years ago
224481a
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
by Victor Stinner
· 5 years ago
c7d2d69
bpo-39884: Add method name in "bad call flags" error (GH-18944)
by Victor Stinner
· 5 years ago
51796e5
Update some www.unicode.org URLs to use HTTPS. (GH-18912)
by Benjamin Peterson
· 5 years ago
051b9d0
closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)
by Benjamin Peterson
· 5 years ago
eebaa9b
bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329)
by Serhiy Storchaka
· 5 years ago
e5ccc94
bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863)
by Serhiy Storchaka
· 5 years ago
413f013
bpo-39904: Move handling of one-argument call of type() from type.__new__() to type.__call__(). (GH-18852)
by Serhiy Storchaka
· 5 years ago
4663f66
bpo-36144: Update MappingProxyType with PEP 584's operators (#18814)
by Brandt Bucher
· 5 years ago
9e5d30c
bpo-39882: Py_FatalError() logs the function name (GH-18819)
by Victor Stinner
· 5 years ago
5572870
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
by Andy Lester
· 5 years ago
9a73705
bpo-39873: Cleanup _PyObject_CheckConsistency() (GH-18807)
by Victor Stinner
· 5 years ago
1fb5a9f
bpo-39873: PyObject_Init() uses PyObject_INIT() (GH-18804)
by Victor Stinner
· 5 years ago
dffe4c0
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
by Andy Lester
· 5 years ago
469325c
bpo-35712: Make using NotImplemented in a boolean context issue a deprecation warning (GH-13195)
by MojoVampire
· 5 years ago
0c2b509
bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749)
by Pablo Galindo
· 5 years ago
02a4d57
bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327)
by Inada Naoki
· 5 years ago
be7ead6
bpo-39737: Remove code repitition in list_richcompare (GH-18638)
by sweeneyde
· 5 years ago
eb8ac57
bpo-36144: Dictionary Union (PEP 584) (#12088)
by Brandt Bucher
· 5 years ago
ee3bac4
Give proper credits for the memoryview implementation. (#18626)
by Stefan Krah
· 5 years ago
1c56f8f
bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530)
by Yonatan Goldschmidt
· 5 years ago
933fc53f
closes bpo-39684: Combine two if/thens and squash uninit var warning. (GH-18565)
by Andy Lester
· 5 years ago
6e35da9
bpo-37207: Use vectorcall for range() (GH-18464)
by Petr Viktorin
· 5 years ago
24bba8c
bpo-36347: stop using RESTRICTED constants (GH-12684)
by Jeroen Demeyer
· 5 years ago
3d235f5
bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519)
by Hai Shi
· 5 years ago
1b55b65
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
by Dong-hee Na
· 5 years ago
9aeb0ef
bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507)
by Dong-hee Na
· 5 years ago
7386a70
closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510)
by Andy Lester
· 5 years ago
d905df7
bpo-39573: Add Py_IS_TYPE() function (GH-18488)
by Dong-hee Na
· 5 years ago
925dc7f
bpo-39606: allow closing async generators that are already closed (GH-18475)
by Nathaniel J. Smith
· 5 years ago
e9e7d28
bpo-35081: Move dtoa.h header to the internal C API (GH-18489)
by Victor Stinner
· 5 years ago
45876a9
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)
by Victor Stinner
· 5 years ago
95905ce
bpo-39605: Remove a cast that causes a warning. (GH-18473)
by Benjamin Peterson
· 6 years ago
e6be9b5
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
by Andy Lester
· 6 years ago
ffd9753
bpo-39245: Switch to public API for Vectorcall (GH-18460)
by Petr Viktorin
· 6 years ago
f3e7ea5
bpo-39500: Document PyUnicode_IsIdentifier() function (GH-18397)
by Victor Stinner
· 6 years ago
60ac6ed
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
by Victor Stinner
· 6 years ago
b10dc3e
bpo-39573: Add Py_SET_SIZE() function (GH-18400)
by Victor Stinner
· 6 years ago
c65b320
bpo-39573: Use Py_TYPE() macro in object.c (GH-18398)
by Victor Stinner
· 6 years ago
d2ec81a
bpo-39573: Add Py_SET_TYPE() function (GH-18394)
by Victor Stinner
· 6 years ago
58ac700
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
by Victor Stinner
· 6 years ago
0d76d2b
bpo-39573: Use Py_TYPE() in abstract.c (GH-18390)
by Victor Stinner
· 6 years ago
c86a112
bpo-39573: Add Py_SET_REFCNT() function (GH-18389)
by Victor Stinner
· 6 years ago
a93c51e
bpo-39573: Use Py_REFCNT() macro (GH-18388)
by Victor Stinner
· 6 years ago
58f4e1a
bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)
by Victor Stinner
· 6 years ago
bf305cc
Add PyInterpreterState.fs_codec.utf8 (GH-18367)
by Victor Stinner
· 6 years ago
f58bd7c
bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363)
by Victor Stinner
· 6 years ago
f16433a
bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361)
by Victor Stinner
· 6 years ago
40e547d
bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346)
by Victor Stinner
· 6 years ago
850a4bd
Restore PyObject_IsInstance() comment (GH-18345)
by Victor Stinner
· 6 years ago
49932fe
bpo-39542: Simplify _Py_NewReference() (GH-18332)
by Victor Stinner
· 6 years ago
24e5ad4
Fixes in sorting descriptions (GH-18317)
by Stefan Pochmann
· 6 years ago
c6e5c11
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
by Victor Stinner
· 6 years ago
869c0c9
bpo-36051: Fix compiler warning. (GH-18325)
by Inada Naoki
· 6 years ago
be8147b
Fix 5-space indentation and trailing whitespace (GH-18311)
by Mark Dickinson
· 6 years ago
46874c2
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
by Hai Shi
· 6 years ago
8d49f7c
bpo-39434: Improve float __floordiv__ performance and error message (GH-18147)
by Dong-hee Na
· 6 years ago
2a4903f
bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278)
by Victor Stinner
· 6 years ago
ec3c99c
bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281)
by Victor Stinner
· 6 years ago
2bf127d
bpo-38631: Replace tp_new_wrapper() fatal error with SystemError (GH-18262)
by Victor Stinner
· 6 years ago
7a1f6c2
bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263)
by Victor Stinner
· 6 years ago
5eb8bff
bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258)
by Victor Stinner
· 6 years ago
5428f48
Remove deadcode in _Py_inc_count() (GH-18257)
by Victor Stinner
· 6 years ago
d07d9f4
bpo-36051: Drop GIL during large bytes.join() (GH-17757)
by Bruce Merry
· 6 years ago
a278313
bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215)
by Victor Stinner
· 6 years ago
47ee8a6
bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214)
by Victor Stinner
· 6 years ago
a94c6b6
bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212)
by Victor Stinner
· 6 years ago
9e1ed51
bpo-39453: Add testcase for bpo-39453 (GH-18202)
by Dong-hee Na
· 6 years ago
4dbf2d8
bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH-18181)
by Dong-hee Na
· 6 years ago
14d80d0
bpo-39425: Fix list.count performance regression (GH-18119)
by Dong-hee Na
· 6 years ago
0d5eac8
closes bpo-39415: Remove unused codes from longobject.c complexobject.c floatobject.c. (GH-18105)
by Dong-hee Na
· 6 years ago
629023c
bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)
by Victor Stinner
· 6 years ago
a96e06d
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
by Andrew Svetlov
· 6 years ago
cd7db76
bpo-39372: Clean header files of declared interfaces with no implementations (GH-18037)
by Pablo Galindo
· 6 years ago
c5b7900
bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)
by Niklas Fiekas
· 6 years ago
4b66fa6
bpo-39200: Correct the error message for range() empty constructor (GH-17813)
by Pablo Galindo
· 6 years ago
22424c0
Document CodeType.replace (GH-17776)
by Anthony Sottile
· 6 years ago
dfef986
bpo-38588: Optimize list comparison. (GH-17766)
by Inada Naoki
· 6 years ago
2d5bf56
bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734)
by Dong-hee Na
· 6 years ago
d9e561d
bpo-38610: Fix possible crashes in several list methods (GH-17022)
by Zackery Spytz
· 6 years ago
c0052f3
closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702)
by Batuhan Taşkaya
· 6 years ago
630c8df
bpo-38858: Small integer per interpreter (GH-17315)
by Victor Stinner
· 6 years ago
cb8b946
bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)
by Batuhan Taşkaya
· 6 years ago
Next »