Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a6e956bcb0edbfe7f18af9be2215a5326ea6bf05
/
Objects
9fc57a3
bpo-35081: Add pycore_fileutils.h (GH-10371)
by Victor Stinner
· 6 years ago
6531bf6
bpo-33462: Add __reversed__ to dict and dict views (GH-6827)
by Rémi Lapeyre
· 6 years ago
e281f7d
bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271)
by Victor Stinner
· 6 years ago
50b4857
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
by Victor Stinner
· 6 years ago
27e2d1f
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
by Victor Stinner
· 6 years ago
2be00d9
bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)
by Victor Stinner
· 6 years ago
c9a6168
Fix a possible crash in range.__reversed__(). (GH-10252)
by Zackery Spytz
· 6 years ago
0353b4e
bpo-33138: Change standard error message for non-pickleable and non-copyable types. (GH-6239)
by Serhiy Storchaka
· 6 years ago
9204fb8
bpo-35081: Cleanup pystate.c and pystate.h (GH-10240)
by Victor Stinner
· 6 years ago
3c09dca
bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223)
by Victor Stinner
· 6 years ago
3e429dc
bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398)
by Serhiy Storchaka
· 6 years ago
372d705
bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846)
by Pablo Galindo
· 6 years ago
49c75a8
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152)
by Pablo Galindo
· 6 years ago
aeb1be5
bpo-34751: improved hash function for tuples (GH-9471)
by jdemeyer
· 6 years ago
50fe3f8
bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108)
by Victor Stinner
· 6 years ago
0862505
bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111)
by Victor Stinner
· 6 years ago
2470204
bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110)
by Victor Stinner
· 6 years ago
b4435e2
bpo-35059: Convert PyObject_INIT() to function (GH-10077)
by Victor Stinner
· 6 years ago
3ec9af7
bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109)
by Victor Stinner
· 6 years ago
626bff8
bpo-9263: Dump Python object on GC assertion failure (GH-10062)
by Victor Stinner
· 6 years ago
18618e65
bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093)
by Victor Stinner
· 6 years ago
9e00e80
bpo-35053: Enhance tracemalloc to trace free lists (GH-10063)
by Victor Stinner
· 6 years ago
c46db92
bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (GH-2599)
by Serhiy Storchaka
· 6 years ago
82af0b6
bpo-9263: _PyObject_Dump() detects freed memory (GH-10061)
by Victor Stinner
· 6 years ago
5a95ba2
Fix issue 34551 - remove redundant store (#9009)
by Eric Lippert
· 6 years ago
2c2044e
bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9874)
by Serhiy Storchaka
· 6 years ago
914f9a0
bpo-34973: Fix crash in bytes constructor. (GH-9841)
by Serhiy Storchaka
· 6 years ago
a5259fb
bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH-9051)
by Sergey Fedoseev
· 6 years ago
6395844
bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050)
by Sergey Fedoseev
· 6 years ago
6f17e51
bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349)
by Serhiy Storchaka
· 6 years ago
b2e2025
bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303)
by Serhiy Storchaka
· 6 years ago
e890421
bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852)
by Serhiy Storchaka
· 6 years ago
a4b48f1
bpo-34940: Fix the error handling in _check_for_legacy_statements(). (GH-9764)
by Zackery Spytz
· 6 years ago
f1aa8ae
Micro-optimize list index range checks (GH-9784)
by Raymond Hettinger
· 6 years ago
fc8205c
Add missing closing quote and trailing period in str.isidentifier() docstring (GH-9756)
by Emanuele Gaifas
· 6 years ago
ffc5a14
bpo-33014: Clarify str.isidentifier docstring (GH-6088)
by Sanyam Khurana
· 6 years ago
ae62f01
bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)
by Zackery Spytz
· 6 years ago
7bb9cd0
bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)
by Zackery Spytz
· 6 years ago
96c5932
bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)
by Zackery Spytz
· 6 years ago
e972c13
bpo-30156: Remove property_descr_get() optimization (GH-9541)
by Victor Stinner
· 6 years ago
2aaf98c
bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)
by INADA Naoki
· 6 years ago
73820a6
Fix compiler warning with a type cast (GH-9300)
by Raymond Hettinger
· 6 years ago
00bc08e
Fix-up parenthesis, organization, and NULL check (GH-9297)
by Raymond Hettinger
· 6 years ago
5ac7043
bpo-33073: Adding as_integer_ratio to ints. (GH-8750)
by Lisa Roach
· 6 years ago
e502451
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
by Benjamin Peterson
· 6 years ago
6c7d67c
bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059)
by Sergey Fedoseev
· 6 years ago
998b806
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
by Victor Stinner
· 6 years ago
0e0bc4e
Fix misleading mentions of tp_size in comments (GH-9093)
by Peter Eisentraut
· 6 years ago
886483e
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)
by Victor Stinner
· 6 years ago
8f73548
bpo-25750: fix refcounts in type_getattro() (GH-6118)
by jdemeyer
· 6 years ago
593bb30
closes bpo-34599: Improve performance of _Py_bytes_capitalize(). (GH-9083)
by Sergey Fedoseev
· 6 years ago
3d4226a
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
by Victor Stinner
· 6 years ago
b2457ef
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
by Victor Stinner
· 6 years ago
b57b4ac
closes bpo-34504: Remove the useless NULL check in PySequence_Check(). (GH-8935)
by Alexey Izbyshev
· 6 years ago
5f79b50
closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferencing it. (GH-8930)
by Alexey Izbyshev
· 6 years ago
8fdd331
closes bpo-34493: Objects/genobject.c: Add missing NULL check to compute_cr_origin() (GH-8911)
by Alexey Izbyshev
· 6 years ago
7ecae3c
closes bpo-34468: Objects/rangeobject.c: Fix an always-false condition in range_repr() (GH-8880)
by Alexey Izbyshev
· 6 years ago
f6247aa
closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init() (GH-8876)
by Alexey Izbyshev
· 6 years ago
ccd9975
bpo-34436: Fix check that disables overallocation for the last fmt specifier (GH-8826)
by Alexey Izbyshev
· 6 years ago
74a307d
bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823)
by Alexey Izbyshev
· 6 years ago
e349bf2
bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences starting with "+". (GH-8741)
by Zackery Spytz
· 6 years ago
2fc4697
bpo-34151: Improve performance of some list operations (GH-8332)
by Sergey Fedoseev
· 7 years ago
caba55b
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
by Victor Stinner
· 7 years ago
ac20e0f
bpo-1617161: Make the hash and equality of methods not depending on the value of self. (GH-7848)
by Serhiy Storchaka
· 7 years ago
7cb7bcf
bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434)
by Serhiy Storchaka
· 7 years ago
53b7d4e
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
by Victor Stinner
· 7 years ago
c573499
bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)
by Serhiy Storchaka
· 7 years ago
a6fdddb
bpo-32500: Fix error messages for sequence and mapping C API. (GH-7846)
by Serhiy Storchaka
· 7 years ago
bd47384
bpo-24618: Add a check in the code constructor. (GH-8283)
by Serhiy Storchaka
· 7 years ago
16dfca4
bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)
by INADA Naoki
· 7 years ago
5ac9e6e
bpo-33597: Reduce PyGC_Head size (GH-7043)
by INADA Naoki
· 7 years ago
0b75228
bpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)
by Yury Selivanov
· 7 years ago
6f19fc6
fix two typos in Objects/odictobject.c comments (GH-8040)
by Robert Krzyzanowski
· 7 years ago
c929df3
bpo-20180: complete AC conversion of Objects/stringlib/transmogrify.h (GH-8039)
by Tal Einat
· 7 years ago
3c45240
bpo-33418: Add tp_clear for function object (GH-8058)
by INADA Naoki
· 7 years ago
fc93bd4
Change tp_size to tp_basicsize in comment and realign the comments (GH-6775)
by Bup
· 7 years ago
ceeef10
bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)
by Serhiy Storchaka
· 7 years ago
5cbefa9
Clean up after bpo-33738. (GH-7627)
by Serhiy Storchaka
· 7 years ago
8398713
bpo-33738: Address review comments in GH #7477 (GH-7585)
by Christian Tismer
· 7 years ago
ea62ce7
bpo-33738: Fix macros which contradict PEP 384 (GH-7477)
by Christian Tismer
· 7 years ago
52698c7
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (GH-7467)
by Yury Selivanov
· 7 years ago
7c69c1c
update to Unicode 11.0.0 (closes bpo-33778) (GH-7439)
by Benjamin Peterson
· 7 years ago
d852142
Replace _PyGC_REFS macros with higher level macros (GH-6852)
by INADA Naoki
· 7 years ago
0904f76
Fix typo in __mul__ and __rmul__ docstring (GH-6674)
by Grant Jenks
· 7 years ago
491bbed
bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)
by lekma
· 7 years ago
6405fee
bpo-33012: Fix invalid function casts for long_long. (GH-6652)
by Serhiy Storchaka
· 7 years ago
c1a6832
bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606)
by Serhiy Storchaka
· 7 years ago
55edd0c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
by Siddhesh Poyarekar
· 7 years ago
078c4e3
bpo-33041: Fix downcast warning on Windows (#6595)
by Victor Stinner
· 7 years ago
61f82e0
Spelling fixes to docs, docstrings, and comments (GH-6374)
by Ville Skyttä
· 7 years ago
397f1b2
bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537)
by Gregory P. Smith
· 7 years ago
b7e1eff
bpo-33299: Return an object itself for some types in _PyCode_ConstantKey(). (GH-6513)
by Serhiy Storchaka
· 7 years ago
5fbc511
bpo-33205: dict: Change GROWTH_RATE to `used*3` (GH-6350)
by INADA Naoki
· 7 years ago
480ab05
bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)
by Antoine Pitrou
· 7 years ago
827d49f
bpo-33031: Remove dead code in C implementation of OrderedDict. (GH-6120)
by Serhiy Storchaka
· 7 years ago
d1c82c5
bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)
by INADA Naoki
· 7 years ago
0301c9b
Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)
by Stefano Taschini
· 7 years ago
397466d
bpo-30953: Improve error messages and add tests for jumping (GH-6196)
by Serhiy Storchaka
· 7 years ago
702f8f3
bpo-33041: Rework compiling an "async for" loop. (#6142)
by Serhiy Storchaka
· 7 years ago
c2b0b12
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
by Marcel Plch
· 7 years ago
Next »