0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00
cpython/Objects
Victor Stinner c22bfaae83 bpo-29524: Add Objects/call.c file (#12)
* Move all functions to call objects in a new Objects/call.c file.
* Rename fast_function() to _PyFunction_FastCallKeywords().
* Copy null_error() from Objects/abstract.c
* Inline type_error() in call.c to not have to copy it, it was only
  called once.
* Export _PyEval_EvalCodeWithName() since it is now called
  from call.c.
2017-02-12 19:27:05 +01:00
..
clinic Issue #29311: Regenerate Argument Clinic. 2017-02-04 08:05:07 +02:00
stringlib Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 2017-01-23 10:23:58 +02:00
abstract.c bpo-29524: Add Objects/call.c file (#12) 2017-02-12 19:27:05 +01:00
accu.c
boolobject.c
bytearrayobject.c
bytes_methods.c
bytesobject.c
call.c bpo-29524: Add Objects/call.c file (#12) 2017-02-12 19:27:05 +01:00
capsule.c
cellobject.c
classobject.c
codeobject.c Issue #29337: Fixed possible BytesWarning when compare the code objects. 2017-01-24 20:54:07 +02:00
complexobject.c
descrobject.c Issue #29263: LOAD_METHOD support for C methods 2017-02-03 07:43:03 +09:00
dict-common.h
dictnotes.txt
dictobject.c bpo-29438: fixed use-after-free in key sharing dict (#17) 2017-02-12 13:51:30 +09:00
enumobject.c
exceptions.c
fileobject.c
floatobject.c
frameobject.c
funcobject.c
genobject.c
iterobject.c
listobject.c
listsort.txt
lnotab_notes.txt
longobject.c Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster 2017-02-02 16:54:45 +02:00
memoryobject.c
methodobject.c bpo-29524: Add Objects/call.c file (#12) 2017-02-12 19:27:05 +01:00
moduleobject.c
namespaceobject.c
object.c Issue #29263: LOAD_METHOD support for C methods 2017-02-03 07:43:03 +09:00
obmalloc.c
odictobject.c Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDict 2017-01-25 00:30:04 +02:00
rangeobject.c
README
setobject.c Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and 2017-02-06 10:41:46 +02:00
sliceobject.c Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with 2017-01-25 13:27:44 +02:00
structseq.c
tupleobject.c
typeobject.c Optimize slots: avoid temporary PyMethodObject 2017-02-09 22:53:47 +01:00
typeslots.inc
typeslots.py
unicodectype.c
unicodeobject.c Fix grammar in doc string, RST markup 2017-01-24 00:30:06 +00:00
unicodetype_db.h
weakrefobject.c

Source files for various builtin objects