summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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-061-6/+6
* Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-051-1/+1
* MergeRaymond Hettinger2016-09-031-1/+1
|\
| * Issue 27936: Fix inconsistent round() behavior between float and intRaymond Hettinger2016-09-031-1/+1
* | MergeRaymond Hettinger2016-08-261-2/+2
|\ \ | |/
| * Issue 19504: Change "customise" to "customize" American spelling.Raymond Hettinger2016-08-261-2/+2
* | Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-241-1/+1
* | Issue #27809: map_next() uses fast callVictor Stinner2016-08-231-15/+31
* | Backed out changeset 70f88b097f60 (map_next)Victor Stinner2016-08-231-31/+15
* | Issue #27809: map_next() uses fast callVictor Stinner2016-08-231-15/+31
* | Issue #27809: builtin___build_class__() uses fast callVictor Stinner2016-08-221-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 #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-1/+1
|\ \ | |/
| * Regenerate Argument Clinic code for issue #26874.Serhiy Storchaka2016-05-011-1/+1
* | Closes #26874: Merge with 3.5Zachary Ware2016-04-281-1/+1
|\ \ | |/
| * Issue #26874: Simplify the divmod docstringZachary Ware2016-04-281-1/+1
* | Closes #26874: Merge with 3.5Zachary Ware2016-04-281-1/+1
|\ \ | |/
| * Issue #26874: Fix divmod docstringZachary Ware2016-04-281-1/+1
* | 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 #24802: Merge null termination fixes from 3.4 into 3.5Martin Panter2015-11-071-16/+32
| |\
| | * Issue #24802: Copy bytes-like objects to null-terminated buffers if necessaryMartin Panter2015-11-071-16/+32
* | | Issue #24402: Merge input() fix from 3.5Martin Panter2015-10-101-1/+3
|\ \ \ | |/ /
| * | Issue #24402: Merge input() fix from 3.4 into 3.5Martin Panter2015-10-101-1/+3
| |\ \ | | |/
| | * Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by EryksunMartin Panter2015-10-101-1/+3
* | | 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
|/ /
* | Specify default values of semantic booleans in Argument Clinic generated sign...Serhiy Storchaka2015-05-301-4/+4
* | Use converter names instead of format units in Argument Clinic descriptionsSerhiy Storchaka2015-05-301-72/+72
* | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.Larry Hastings2015-04-141-14/+22
* | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-684/+31
* | Initialize variables to prevent GCC warningsVictor Stinner2015-03-181-1/+1
* | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-14/+22
|\ \ | |/
| * Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-13/+21
* | Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka2014-09-061-2/+2
* | Issue #20184: Add signature introspection for 30 of the builtinsNick Coghlan2014-08-171-373/+1188
* | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-1/+1
|/
* Issue #22146: Fix typo in __build_class__ error messageZachary Ware2014-08-051-1/+1
* Issue #19362: Tweek len() doc and docstring to expand the indicated range ofTerry Jan Reedy2014-06-161-1/+1