summaryrefslogtreecommitdiff
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #26729: Fixed __text_signature__ for sorted().Serhiy Storchaka2017-01-231-54/+51
|\
| * Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
| * Issue #29331: Simplified argument parsing in sorted() and list.sort().Serhiy Storchaka2017-01-211-9/+5
| * Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().Serhiy Storchaka2017-01-201-1/+2
| |\
| * | Issue #29296: convert print() to METH_FASTCALLINADA Naoki2017-01-191-11/+11
| * | sorted() uses METH_FASTCALLVictor Stinner2017-01-171-11/+9
| * | next() uses FASTCALLVictor Stinner2017-01-171-3/+9
| * | getattr() uses METH_FASTCALLVictor Stinner2017-01-171-3/+8
| * | __build_class__() builtin uses METH_FASTCALLVictor Stinner2017-01-161-15/+9
| * | Add _PY_FASTCALL_SMALL_STACK constantVictor Stinner2016-12-151-1/+1
| * | Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
| * | Merge #23722 from 3.6Nick Coghlan2016-12-051-2/+2
| |\ \
| | * | Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-4/+4
| | * | Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-4/+4
| | * | Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-2/+2
* | | | Issue #26729: Fixed __text_signature__ for sorted().Serhiy Storchaka2017-01-231-68/+98
|\ \ \ \ | | |_|/ | |/| |
| * | | Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().Serhiy Storchaka2017-01-201-1/+2
| |/ /
| * | Issue #23722: improve __classcell__ compatibilityNick Coghlan2016-12-051-5/+35
| |/
| * Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-4/+4
| * Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-6/+4
| * Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-081-1/+1
| * Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-3/+5
| * Avoid calling functions with an empty string as format stringVictor Stinner2016-09-051-6/+6
| * Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-051-1/+1
| * MergeRaymond Hettinger2016-09-031-1/+1
| |\
| * \ MergeRaymond Hettinger2016-08-251-50/+49
| |\ \
| | * | Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-251-1/+1
| | * | Issue #27809: map_next() uses fast callVictor Stinner2016-08-241-15/+31
| | * | Backed out changeset 70f88b097f60 (map_next)Victor Stinner2016-08-241-31/+15
| | * | Issue #27809: map_next() uses fast callVictor Stinner2016-08-231-15/+31
| | * | Issue #27809: builtin___build_class__() uses fast callVictor Stinner2016-08-231-6/+2
| | * | Issue #27809: Use _PyObject_FastCallDict()Victor Stinner2016-08-221-10/+2
| | * | Issue #27809: Use _PyObject_FastCallDict()Victor Stinner2016-08-221-10/+5
| | * | - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-59/+58
| | |\ \
| | * | | Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs.Serhiy Storchaka2016-06-181-2/+2
| | * | | Restored parameter name "self" since gdb needs exact specific parameter names.Serhiy Storchaka2016-05-051-2/+3
| | * | | Got rid of redundand "self" parameter declarations.Serhiy Storchaka2016-05-021-3/+2
| | * | | Regenerate Argument Clinic code for issue #26874.Serhiy Storchaka2016-05-011-9/+9
| | |\ \ \
| | | * \ \ Closes #26874: Merge with 3.5Zachary Ware2016-04-281-9/+9
| | | |\ \ \
| | | | * \ \ Closes #26874: Merge with 3.5Zachary Ware2016-04-281-9/+9
| | | | |\ \ \
| | | | | * | | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-131-3/+2
| | | | | * | | Issue #24802: Merge null termination fixes from 3.5Martin Panter2015-11-071-16/+32
| | | | | |\ \ \
| | | | | * \ \ \ Issue #24402: Merge input() fix from 3.5Martin Panter2015-10-101-6/+7
| | | | | |\ \ \ \
| | | | | | * | | | Hoist constant expression out of the inner loop.Raymond Hettinger2015-10-091-3/+3
| | | | | | * | | | Make comparison more consistentRaymond Hettinger2015-10-091-1/+1
| | | | | | * | | | Use PyTuple_GET_SIZE like the adjacent code does.Raymond Hettinger2015-08-181-1/+1
| | | | | | * | | | Inline PyIter_Next() matching the other itertools code.Raymond Hettinger2015-08-181-1/+2
* | | | | | | | | | Issue #26729: Fixed __text_signature__ for sorted().Serhiy Storchaka2017-01-231-1/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue 27936: Fix inconsistent round() behavior between float and intRaymond Hettinger2016-09-031-1/+1
|/ / / / / / / /
* | | | | | | | Issue 19504: Change "customise" to "customize" American spelling.Raymond Hettinger2016-08-251-2/+2
| |_|_|_|_|_|/ |/| | | | | |