aboutsummaryrefslogtreecommitdiff
path: root/Include/longobject.h
AgeCommit message (Expand)Author
2021-10-19bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner
2020-10-27bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003)Victor Stinner
2020-06-29bpo-41123: Remove PyLong_FromUnicode() (GH-21204)Inada Naoki
2020-05-26bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka
2020-02-17bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)Dong-hee Na
2019-09-12Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013)Greg Price
2019-05-28bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz
2019-05-19bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)Serhiy Storchaka
2019-02-25bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka
2018-07-26bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....Serhiy Storchaka
2017-03-30bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka
2016-11-20Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka
2016-09-11Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka
2016-09-06replace PY_LONG_LONG with long longBenjamin Peterson
2016-09-05require a long long data type (closes #27961)Benjamin Peterson
2016-07-28Issue #27626: Merge spelling fixes from 3.5Martin Panter
2016-07-28Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter
2015-10-14Modify _PyBytes_DecodeEscapeRecode() to use _PyBytesAPIVictor Stinner
2015-10-14Optimize bytes.fromhex() and bytearray.fromhex()Victor Stinner
2015-10-09Issue #25349: Optimize bytes % intVictor Stinner
2015-05-13Issue #22486: Added the math.gcd() function. The fractions.gcd() function no...Serhiy Storchaka
2013-12-11Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka
2013-12-11Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka
2013-10-19Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka
2013-08-27Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka
2013-08-27Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka
2013-08-03Issue #16741: Fix an error reporting in int().Serhiy Storchaka
2013-08-03Issue #16741: Fix an error reporting in int().Serhiy Storchaka
2013-06-05Issue #17931: Resolve confusion on Windows between pids and process handles.Richard Oudkerk
2013-01-19Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka
2013-01-19Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka
2013-01-15Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka
2012-05-29Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ...Victor Stinner
2011-09-29Clean up a few tabs that went in with PEP393.Ezio Melotti
2011-09-28Implement PEP 393.Martin v. Löwis
2010-12-03Merge branches/pep-0384.Martin v. Löwis
2010-08-28Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() privateAntoine Pitrou
2010-06-27Issue #9089: Remove references to intobject.c and intobject.h from comments.Mark Dickinson
2010-06-07Fix naming inconsistency.Mark Dickinson
2010-05-26Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_NearMark Dickinson
2010-03-14Change PARSE_PID to _Py_PARSE_PID (cleanup for r78946).Gregory P. Smith
2010-03-14* Replaces the internals of the subprocess module from fork through exec onGregory P. Smith
2010-01-30Merged revisions 77842 via svnmerge fromMark Dickinson
2010-01-02Merged revisions 77234 via svnmerge fromMark Dickinson
2009-03-18Issue #4258: Make it possible to use 30-bit digits for PyLongs:Mark Dickinson
2009-01-09Reduce the size of the _PyLong_DigitValue table.Raymond Hettinger
2008-05-30Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith
2007-12-20Drop _PyLong_FitsInLong. Fixes #1666.Martin v. Löwis
2007-12-19#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes
2007-12-04Removed PyInt_GetMax and sys.maxintChristian Heimes