- a72d15c consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563) by Benjamin Peterson · 8 years ago
- 994f04d Issue #28998: More APIs now support longs as well as ints. by Serhiy Storchaka · 9 years ago
- 13cc679 Issue #24469: Fixed memory leak caused by int subclasses without overridden by Serhiy Storchaka · 9 years ago
- ca56dd4 Issue #28139: Fix messed up indentation by Martin Panter · 9 years ago
- 646b528 Issue #22463: Backport compiler warning fixes and workarounds by Martin Panter · 9 years ago
- c6b6ab0 remove strange casts by Benjamin Peterson · 11 years ago
- 74f49ab Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 13 years ago
- cf095f8 Issue #16761: Raise TypeError when int() or long() called with base argument only. by Serhiy Storchaka · 13 years ago
- ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 13 years ago
- dbbed04 Issue #12973: Fix int.__pow__ overflow checks that invoked undefined behaviour, thereby producing incorrect results on Clang. by Mark Dickinson · 14 years ago
- c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
- 328284a Improve error message from nb_int returning a non-integer, in various PyInt_As* functions: by Mark Dickinson · 15 years ago
- 30583e3 Silence a compiler warning. by Raymond Hettinger · 15 years ago
- 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 16 years ago
- 1691025 Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). by Mark Dickinson · 16 years ago
- 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 16 years ago
- 3d6790e Silence another MSVC warning about unary minus. by Mark Dickinson · 16 years ago
- 4b9d473 Issue #6713: Improve decimal int -> string conversions. Thanks Gawain by Mark Dickinson · 16 years ago
- 85e269b Remove unnecessary uses of context in PyGetSetDef. See issue #5880. by Mark Dickinson · 16 years ago
- 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 16 years ago
- b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 17 years ago
- 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 17 years ago
- 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 17 years ago
- 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 17 years ago
- e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 17 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
- dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 17 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
- 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
- c0a56ff Pluralss only need one s, not 2 (intss -> ints) by Neal Norwitz · 17 years ago
- 5de250e Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. by Jeffrey Yasskin · 17 years ago
- a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
- 5e527eb Added PyNumber_ToBase and supporting routines _PyInt_Format and by Eric Smith · 17 years ago
- 422051a Patch #1953 by Christian Heimes · 18 years ago
- 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
- 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
- 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
- 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
- d501d1f Port rev 55353 from Guido: by Neal Norwitz · 18 years ago
- abe1d48 As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. by Kristján Valur Jónsson · 18 years ago
- f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
- ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
- 37e6502 Minor change in int() docstring for proper spacing. by Gustavo Niemeyer · 19 years ago
- a443bc8 Mention in the int() docstring that a base zero has meaning, as by Gustavo Niemeyer · 19 years ago
- 2c1375c Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 19 years ago
- 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 19 years ago
- 820d6ac Fix integer negation and absolute value to not rely by Martin v. Löwis · 19 years ago
- c10c9d0 "Conceptual" merge of rev 51711 from the 2.5 branch. by Tim Peters · 19 years ago
- 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 19 years ago
- 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
- 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 19 years ago
- 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
- 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
- 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
- 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 19 years ago
- b1410fb Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize by Thomas Wouters · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
- c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
- c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 21 years ago
- 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 21 years ago
- a006c37 SF bug #980419: int left-shift causes memory leak by Raymond Hettinger · 21 years ago
- 41627bf Reword message by Andrew M. Kuchling · 21 years ago
- 204d786 Fix exception wording by Andrew M. Kuchling · 21 years ago
- b32e640 SF patch #875689: >100k alloc wasted on startup (Contributed by Mike Pall.) by Raymond Hettinger · 22 years ago
- 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 22 years ago
- 71665dc Add a couple of decrefs to error paths. by Michael W. Hudson · 22 years ago
- f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 22 years ago
- a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
- 850566b Strange control flow in PyInt_AsLong. When nb_int is called inside by Thomas Heller · 22 years ago
- 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 22 years ago
- de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
- 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 23 years ago
- fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 23 years ago
- b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 23 years ago
- c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 23 years ago
- 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 23 years ago
- f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 23 years ago
- 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 23 years ago
- 02fe647 Insert an overflow check when the sequence repetition count is outside by Guido van Rossum · 23 years ago
- e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 23 years ago
- 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 23 years ago
- 4571e9d Add an improvement wrinkle to Neil Schemenauer's change to int_mul by Guido van Rossum · 23 years ago
- da1a221 int_lshift(): Simplified/sped overflow-checking. by Tim Peters · 23 years ago
- 643d59c Use a better check for overflow from a<<b. by Guido van Rossum · 23 years ago
- 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 23 years ago
- 3bc3f28 Only call sq_repeat if the object does not have a nb_multiply slot. One by Neil Schemenauer · 23 years ago
- 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
- 29c0afc Just added comments, and cleared some XXX questions, related to int by Tim Peters · 23 years ago
- 9364698 Make sure that tp_free frees the int the same way as tp_dealloc would. by Guido van Rossum · 23 years ago
- 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
- e75bfde Bugfix candidate. by Guido van Rossum · 24 years ago
- a3c01ce SF bug #488480: integer multiply to return -max_int-1. by Tim Peters · 24 years ago
- 4222104 SF bug #487743: test_builtin fails on 64 bit platform. by Tim Peters · 24 years ago
- 6197509 PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of by Barry Warsaw · 24 years ago