summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* 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-4/+5
|\
| * Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple()Martin Panter2016-07-251-4/+5
* | Merge spelling fixes from 3.5Martin Panter2016-06-201-1/+1
|\ \ | |/
| * Fix spelling errors in code commentsMartin Panter2016-06-201-2/+2
* | 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 #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 #25556: Add assertions to PyObject_GetItem() to ensure that an exceptionVictor Stinner2015-11-051-3/+8
|/ /
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-1/+1
|\ \ | |/
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* | More typos in 3.5 documentation and commentsMartin Panter2015-10-071-1/+1
* | mergeRaymond Hettinger2015-05-171-1/+1
|\ \ | |/
| * Issue #23757: Only call the concrete list API for exact lists.Raymond Hettinger2015-05-171-1/+1
* | 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
* | Issue #23571: Oops, fix #ifdef assert()Victor Stinner2015-03-091-1/+1
* | Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() nowVictor Stinner2015-03-061-20/+53
* | Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo()Stefan Krah2015-02-031-1/+6
* | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-53/+27
|\ \ | |/
| * Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-54/+27
* | Merge from 3.4.Stefan Krah2015-02-011-2/+2
|\ \ | |/
| * Issue #23370: Fix off-by-one error for non-contiguous buffers.Stefan Krah2015-02-011-2/+2
* | Issue #22445: PyBuffer_IsContiguous() now implements precise contiguityStefan Krah2015-02-011-12/+37
* | Issue20284: Implement PEP461Ethan Furman2015-01-241-2/+3
* | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-7/+6
* | Closes #22540: speed up PyObject_IsInstance and PyObject_IsSubclass in the co...Georg Brandl2014-10-031-0/+15
* | Issue #22290: PyObject_Call() now fails with an assertion error when calledVictor Stinner2014-09-041-0/+5
* | merge 3.4Benjamin Peterson2014-06-271-9/+6
|\ \ | |/
| * use NULL not 0Benjamin Peterson2014-06-271-9/+6
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-101-0/+14
|/
* Better assertion in PyObject_Call() to detect functions returning a result withVictor Stinner2013-12-191-1/+2
* Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-111-56/+36
|\
| * Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-111-56/+36
* | Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() andVictor Stinner2013-10-291-0/+2
* | Issue #19369: Optimized the usage of __length_hint__().Serhiy Storchaka2013-10-241-8/+10
* | Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-4/+4
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-4/+3
|\ \ | |/
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-4/+3
* | Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-031-24/+5
|\ \ | |/