summaryrefslogtreecommitdiff
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Fix typos in comment and documentationMartin Panter2016-12-101-1/+1
* Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raisingSerhiy Storchaka2016-10-211-12/+10
* remove unneeded castBenjamin Peterson2016-09-221-1/+1
* va_end() all va_copy()ed va_lists.Christian Heimes2016-09-211-0/+2
* replace usage of Py_VA_COPY with the (C99) standard va_copyBenjamin Peterson2016-09-201-1/+1
* Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes2016-09-131-2/+2
* Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()Victor Stinner2016-09-121-0/+3
* Revert change f860b7a775c5Victor Stinner2016-09-121-19/+7
* ssue #27213: Reintroduce checks in _PyStack_AsDict()Victor Stinner2016-09-121-7/+19
* Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-121-19/+7
* Add METH_FASTCALL calling conventionVictor Stinner2016-09-091-0/+56
* Issue #27810: Add _PyCFunction_FastCallKeywords()Victor Stinner2016-09-091-2/+5
* Add _PyObject_FastCallKeywords()Victor Stinner2016-09-091-0/+68
* Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-1/+19
* Issue #27830: Remove unused _PyStack_AsDict()Victor Stinner2016-09-051-34/+0
* Issue #27830: Revert, remove _PyFunction_FastCallKeywords()Victor Stinner2016-08-251-45/+0
* method_call() and slot_tp_new() now uses fast callVictor Stinner2016-08-251-0/+39
* Issue #27830: Fix _PyObject_FastCallKeywords()Victor Stinner2016-08-251-1/+1
* _PyObject_FastCallDict(): avoid _Py_CheckFunctionResult()Victor Stinner2016-08-251-2/+2
* Add _PyObject_FastCallKeywords()Victor Stinner2016-08-251-0/+79
* Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-251-1/+1
* PyObject_CallMethodObjArgs() now uses fast callVictor Stinner2016-08-241-32/+71
* Backed out changeset 0e4f26083bbb (PyObject_CallMethodObjArgs)Victor Stinner2016-08-241-71/+32
* PyObject_CallMethodObjArgs() now uses fast callVictor Stinner2016-08-241-32/+71
* _PyFunction_FastCallDict() supports keyword argsVictor Stinner2016-08-221-6/+5
* Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-6/+6
* Issue #26984: int() now always returns an instance of exact int.Serhiy Storchaka2016-08-211-12/+23
* Fix PyObject_Call() parameter namesVictor Stinner2016-08-191-2/+4
* Avoid call_function_tail() for empty format strVictor Stinner2016-08-191-20/+19
* PEP 7: add {...} around null_error() in abstract.cVictor Stinner2016-08-191-28/+65
* Cleanup callmethod()Victor Stinner2016-08-191-2/+6
* Cleanup call_function_tail()Victor Stinner2016-08-191-20/+29
* call_function_tail() uses fast callVictor Stinner2016-08-191-13/+6
* Add _PyObject_FastCall()Victor Stinner2016-08-191-0/+76
* Issue #27581: Merge overflow fix from 3.5Martin Panter2016-07-251-9/+32
|\
| * Merge spelling fixes from 3.5Martin Panter2016-06-201-1/+1
| |\
| * | Comment fixes extracted from patch by Demur Rumed.Serhiy Storchaka2016-06-121-1/+1
| * | Issue #26983: float() now always return an instance of exact float.Serhiy Storchaka2016-06-031-6/+24
| * | Issue #24802: Merge null termination fixes from 3.5Martin Panter2015-11-071-2/+20
| |\ \
| * | | Issue #25556: Add assertions to PyObject_GetItem() to ensure that an exceptionVictor Stinner2015-11-051-3/+8
* | | | Issue #27581: Don?t rely on overflow wrapping in PySequence_Tuple()Martin Panter2016-07-251-4/+5
| |_|/ |/| |
* | | Fix spelling errors in code commentsMartin Panter2016-06-201-2/+2
| |/ |/|
* | Issue #24802: Merge null termination fixes from 3.4 into 3.5Martin Panter2015-11-071-2/+20
|\ \ | |/ |/|
| * Issue #24802: Copy bytes-like objects to null-terminated buffers if necessaryMartin Panter2015-11-071-2/+20
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-39/+149
|\ \ | |/ |/|
| * More typos in 3.5 documentation and commentsMartin Panter2015-10-071-1/+1
| * mergeRaymond Hettinger2015-05-171-39/+149
| |\
| | * Issue #23571: Enhance _Py_CheckFunctionResult()Victor Stinner2015-03-241-9/+10
| | * Issue #23571: In debug mode, _Py_CheckFunctionResult() now callsVictor Stinner2015-03-241-12/+9
| | * Issue #23571: _Py_CheckFunctionResult() now gives the name of the functionVictor Stinner2015-03-211-6/+20