- 42acb7b bpo-35696: Simplify long_compare() (GH-16146) by HongWeipeng · 6 years ago
- c6734ee bpo-37802: Slightly improve perfomance of PyLong_FromUnsigned*() (GH-15192) by Sergey Fedoseev · 6 years ago
- 7117074 bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) by Raymond Hettinger · 6 years ago
- 2ec7010 bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) by Jordon Xu · 6 years ago
- 6b51998 replace inline function `is_small_int` with a macro version (GH-15710) by animalize · 6 years ago
- bed4817 Make PyXXX_Fini() functions private (GH-15531) by Victor Stinner · 6 years ago
- 5e63ab0 bpo-37812: Convert CHECK_SMALL_INT macro to a function so the return is explicit. (GH-15216) by Greg Price · 6 years ago
- 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 6 years ago
- dc24765 bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) by Zackery Spytz · 6 years ago
- 1e375c6 bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761) by Petr Viktorin · 6 years ago
- e584cbf bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13758) by Petr Viktorin · 6 years ago
- c529967 bpo-36027: Extend three-argument pow to negative second argument (GH-13266) by Mark Dickinson · 6 years ago
- 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 6 years ago
- 7d40869 remove unnecessary tp_dealloc (GH-13647) by Inada Naoki · 6 years ago
- a5119e7 bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416) by Serhiy Storchaka · 6 years ago
- 96aeaec bpo-36793: Remove unneeded __str__ definitions. (GH-13081) by Serhiy Storchaka · 6 years ago
- a10d426 bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333) by stratakis · 6 years ago
- 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 6 years ago
- ea6207d bpo-36063: Minor performance tweak in long_divmod(). (GH-11915) by Sergey Fedoseev · 6 years ago
- 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 7 years ago
- b509d52 bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) by Victor Stinner · 7 years ago
- 49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) by Pablo Galindo · 7 years ago
- b4435e2 bpo-35059: Convert PyObject_INIT() to function (GH-10077) by Victor Stinner · 7 years ago
- b2e2025 bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) by Serhiy Storchaka · 7 years ago
- 7bb9cd0 bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705) by Zackery Spytz · 7 years ago
- 73820a6 Fix compiler warning with a type cast (GH-9300) by Raymond Hettinger · 7 years ago
- 00bc08e Fix-up parenthesis, organization, and NULL check (GH-9297) by Raymond Hettinger · 7 years ago
- 5ac7043 bpo-33073: Adding as_integer_ratio to ints. (GH-8750) by Lisa Roach · 7 years ago
- 7cb7bcf bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434) by Serhiy Storchaka · 7 years ago
- 6405fee bpo-33012: Fix invalid function casts for long_long. (GH-6652) by Serhiy Storchaka · 7 years ago
- 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 7 years ago
- dd431b3 PyLong_FromString(): fix Coverity CID 1424951 (#4738) by Victor Stinner · 8 years ago
- 29ba688 bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884) by Serhiy Storchaka · 8 years ago
- 28b6248 bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376) by Sanyam Khurana · 8 years ago
- 9b6c60c bpo-31979: Simplify transforming decimals to ASCII (#4336) by Serhiy Storchaka · 8 years ago
- e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 8 years ago
- 85c0b89 bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827) by Serhiy Storchaka · 8 years ago
- b2e5794 bpo-31338 (#3374) by Barry Warsaw · 8 years ago
- 918403c bpo-29816: Shift operation now has less opportunity to raise OverflowError. (#680) by Serhiy Storchaka · 8 years ago
- ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 8 years ago
- 18b250f bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615) by Serhiy Storchaka · 8 years ago
- 390a096 bpo-29749: Update int() docstring (GH-565) by svelankar · 8 years ago
- 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 8 years ago
- 86aa269 remove 3 redundant casts in Objects/longobject.c (#445) by orenmn · 8 years ago
- 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 8 years ago
- 196a7bc Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster by Serhiy Storchaka · 9 years ago
- 495e880 Issue #20185: Converted the int class to Argument Clinic. by Serhiy Storchaka · 9 years ago
- de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 9 years ago
- 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 9 years ago
- 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 9 years ago
- 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 9 years ago
- 1a73bf3 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 9 years ago
- 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 9 years ago
- f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 9 years ago
- b2e64f9 Issue #28621: Sped up converting int to float by reusing faster bits counting by Serhiy Storchaka · 9 years ago
- c1c4a64 Issue #27111: Minor simplication to long_add and long_sub fast path code. Thanks Oren Milman. by Mark Dickinson · 9 years ago
- fba121f Issue #27441: Remove some redundant assignments to ob_size in longobject.c. Thanks Oren Milman. by Mark Dickinson · 9 years ago
- 92ca535 Issue #27222: various cleanups in long_rshift. Thanks Oren Milman. by Mark Dickinson · 9 years ago
- 82cb124 Issue #25221: merge from 3.5. by Mark Dickinson · 9 years ago
- 36820dd Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0. by Mark Dickinson · 9 years ago
- a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 9 years ago
- 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 9 years ago
- 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 9 years ago
- ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 9 years ago
- d953f8e remove some silly defined() tests by Benjamin Peterson · 9 years ago
- af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 9 years ago
- ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 9 years ago
- 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 9 years ago
- 82a9527 Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory. by Mark Dickinson · 9 years ago
- 4e1de16 Issue #25402: in int-to-decimal-string conversion, reduce intermediate storage requirements and relax restriction on converting large integers. Patch by Serhiy Storchaka. by Mark Dickinson · 9 years ago
- 583c6e8 Issue #27214: Fix potential bug and remove useless optimization in long_invert. Thanks Oren Milman. by Mark Dickinson · 9 years ago
- b820d7f Issue #27792: force int return type for modulo operations involving bools. by Mark Dickinson · 9 years ago
- 1dc3c89 Untabify Objects/longobject.c. by Mark Dickinson · 9 years ago
- dc590a4 Issue #25604: Fix minor bug in integer true division, which could by Mark Dickinson · 9 years ago
- 8bcf312 Issue #27786: Simplify x_sub() by Victor Stinner · 9 years ago
- 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 9 years ago
- eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 9 years ago
- e63e5d6 Issue #27073: Removed redundant checks in long_add and long_sub. by Serhiy Storchaka · 9 years ago
- ea36c94 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 9 years ago
- 1f36443 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 9 years ago
- f963c13 longobject.c: fix compilation warning on Windows 64-bit by Victor Stinner · 9 years ago
- e0b2309 Issues #26289 and #26315: Optimize floor/modulo div for single-digit longs by Yury Selivanov · 9 years ago
- a0fcaca Issue #26288: Fix comment by Yury Selivanov · 10 years ago
- 186c30b Issue #26288: Optimize PyLong_AsDouble. by Yury Selivanov · 10 years ago
- bb6e4a0 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 10 years ago
- f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 10 years ago
- 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 10 years ago
- 1285e5c Fix compiler warnings (uninitialized variables), false alarms in fact by Victor Stinner · 10 years ago
- 199c9a6 Fix long_format_binary() by Victor Stinner · 10 years ago
- be75b8c Issue #25349: Optimize bytes % int by Victor Stinner · 10 years ago
- 5783fd2 Issue #24999: In longobject.c, use two shifts instead of ">> 2*PyLong_SHIFT" to by Victor Stinner · 10 years ago
- 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 10 years ago
- 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 11 years ago
- 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 11 years ago
- 12174a5 Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 11 years ago
- 45e8e2f Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() by Victor Stinner · 11 years ago
- 0c346d8 Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeError. Patch by Josh Rosenberg. by Mark Dickinson · 11 years ago
- 1aca78d merge 3.3 by Benjamin Peterson · 11 years ago
- 45c9dce fix c89 declaration order by Benjamin Peterson · 11 years ago
- dfa8228 merge 3.3 by Benjamin Peterson · 11 years ago