aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003)Victor Stinner2020-10-271-3/+0
* bpo-41123: Remove PyLong_FromUnicode() (GH-21204)Inada Naoki2020-06-291-2/+0
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-261-17/+0
* bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)Dong-hee Na2020-02-171-1/+1
* Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013)Greg Price2019-09-121-1/+1
* bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz2019-05-281-1/+2
* bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)Serhiy Storchaka2019-05-191-0/+3
* bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka2019-02-251-1/+11
* bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....Serhiy Storchaka2018-07-261-0/+8
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-301-0/+5
* Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-1/+1
* Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+2
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-6/+6
* require a long long data type (closes #27961)Benjamin Peterson2016-09-051-2/+0
* Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-281-1/+1
|\
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-1/+1
* | Modify _PyBytes_DecodeEscapeRecode() to use _PyBytesAPIVictor Stinner2015-10-141-1/+2
* | Optimize bytes.fromhex() and bytearray.fromhex()Victor Stinner2015-10-141-1/+1
* | Issue #25349: Optimize bytes % intVictor Stinner2015-10-091-0/+7
|/
* Issue #22486: Added the math.gcd() function. The fractions.gcd() function no...Serhiy Storchaka2015-05-131-0/+3
* Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-111-0/+6
|\
| * Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-111-0/+6
* | Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-3/+3
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-3/+3
|\|
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-3/+3
* | Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-031-0/+1
|\|
| * Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-031-0/+1
| * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+3
| |\
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+3
* | | Issue #17931: Resolve confusion on Windows between pids and process handles.Richard Oudkerk2013-06-051-0/+13
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-151-0/+3
|/ /
* | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ...Victor Stinner2012-05-291-5/+13
* | Clean up a few tabs that went in with PEP393.Ezio Melotti2011-09-291-8/+8
* | Implement PEP 393.Martin v. Löwis2011-09-281-2/+4
|/
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+8
* Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() privateAntoine Pitrou2010-08-281-9/+0
* Issue #9089: Remove references to intobject.c and intobject.h from comments.Mark Dickinson2010-06-271-1/+1
* Fix naming inconsistency.Mark Dickinson2010-06-071-2/+2
* Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_NearMark Dickinson2010-05-261-0/+8
* Change PARSE_PID to _Py_PARSE_PID (cleanup for r78946).Gregory P. Smith2010-03-141-3/+3
* * Replaces the internals of the subprocess module from fork through exec onGregory P. Smith2010-03-141-0/+17
* Merged revisions 77842 via svnmerge fromMark Dickinson2010-01-301-0/+1
* Merged revisions 77234 via svnmerge fromMark Dickinson2010-01-021-7/+7
* Issue #4258: Make it possible to use 30-bit digits for PyLongs:Mark Dickinson2009-03-181-0/+1
* Reduce the size of the _PyLong_DigitValue table.Raymond Hettinger2009-01-091-1/+1
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-0/+6
* Drop _PyLong_FitsInLong. Fixes #1666.Martin v. Löwis2007-12-201-1/+0
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+0
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-1/+1