You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Yonatan Goldschmidt 350526105f
bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the func object (GH-22953)
5 years ago
..
clinic bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) 5 years ago
stringlib bpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows build (GH-16334) 5 years ago
README Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
abstract.c Delete PyGen_Send (#22663) 5 years ago
accu.c bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271) 7 years ago
boolobject.c bpo-41870: Avoid the test when nargs=0 (GH-22462) 5 years ago
bytearrayobject.c bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535) 6 years ago
bytes_methods.c bpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows build (GH-16334) 5 years ago
bytesobject.c bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593) 5 years ago
call.c bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) 6 years ago
capsule.c bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) 6 years ago
cellobject.c bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) 6 years ago
classobject.c bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) 6 years ago
codeobject.c bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803) 5 years ago
complexobject.c bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) 5 years ago
descrobject.c bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) 6 years ago
dict-common.h bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537) 8 years ago
dictnotes.txt Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
dictobject.c bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986) 5 years ago
enumobject.c bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) 5 years ago
exceptions.c bpo-41654: Fix compiler warning in MemoryError_dealloc() (GH-22387) 5 years ago
fileobject.c bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes". (GH-22620) 5 years ago
floatobject.c bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) 5 years ago
frameobject.c bpo-40941: Unify implicit and explicit state in the frame and generator objects into a single value. (GH-20803) 6 years ago
funcobject.c bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the func object (GH-22953) 5 years ago
genericaliasobject.c Fix the attribute names in the docstring of GenericAlias (GH-22594) 5 years ago
genobject.c Delete PyGen_Send (#22663) 5 years ago
interpreteridobject.c bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) 6 years ago
iterobject.c bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) 6 years ago
listobject.c Fix typo in Object/listobject.c (GH-21079) 6 years ago
listsort.txt Fixes in sorting descriptions (GH-18317) 6 years ago
lnotab_notes.txt bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) 6 years ago
longobject.c bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003) 5 years ago
memoryobject.c bpo-41732: add iterator to memoryview (GH-22119) 5 years ago
methodobject.c bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self is kept alive long enough (GH-22670) 5 years ago
moduleobject.c bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) 5 years ago
namespaceobject.c bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-19430) 6 years ago
object.c bpo-41991: Remove _PyObject_HasAttrId (GH-22629) 5 years ago
obmalloc.c bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) 6 years ago
odictobject.c bpo-41333: Convert OrderedDict.pop() to Argument Clinic (GH-21534) 6 years ago
picklebufobject.c bpo-36785: PEP 574 implementation (GH-7076) 7 years ago
rangeobject.c bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) 5 years ago
setobject.c bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) 5 years ago
sliceobject.c bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) 5 years ago
structseq.c bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) 5 years ago
tupleobject.c bpo-40521: Always create the empty tuple singleton (GH-21116) 6 years ago
typeobject.c bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986) 5 years ago
typeslots.inc bpo-40724: Support setting buffer slots from type specs (GH-20648) 6 years ago
typeslots.py Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting. 10 years ago
unicodectype.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
unicodeobject.c bpo-42157: unicodedata avoids references to UCD_Type (GH-22990) 5 years ago
unicodetype_db.h closes bpo-39926: Update Unicode to 13.0.0. (GH-18910) 6 years ago
unionobject.c bpo-42099: Fix reference to ob_type in unionobject.c and ceval (GH-22829) 5 years ago
weakrefobject.c bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objects (GH-19946) 6 years ago

README

Source files for various builtin objects