summaryrefslogtreecommitdiffstats
path: root/Objects/intobject.c
Commit message (Expand)AuthorAgeFilesLines
* Rich comparisons fall-out:Guido van Rossum2001-01-171-14/+1
* Make int a new style number type. Sequence repeat is now done hereNeil Schemenauer2001-01-041-64/+116
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-5/+5
* SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather thanTim Peters2000-10-061-2/+6
* Move LONG_BIT from intobject.c to pyport.h. #error if it's already beenTim Peters2000-10-051-8/+0
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-12/+0
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* ANSI-fication of the sources.Fred Drake2000-07-091-89/+38
* Cray J90 fixes for long ints.Tim Peters2000-07-081-4/+1
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-2/+2
* Replace PyErr_BadArgument() error in PyInt_AsLong() with "an integerGuido van Rossum2000-05-091-1/+1
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-8/+6
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-0/+18
* Many changes for Unicode, by Marc-Andre Lemburg.Guido van Rossum2000-03-101-1/+1
* In response to one particular complaint on edu-sig, change some errorGuido van Rossum2000-02-151-3/+3
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-201-1/+1
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-0/+43
* Patch by Tim Peters fixing PR#88:Guido van Rossum1999-09-271-1/+7
* Fix a problem with Vladimir's PyInt_Fini code: clear the free list; ifGuido van Rossum1999-03-191-5/+27
* Vladimir has restructured his code somewhat so that the blocks are nowGuido van Rossum1999-03-121-26/+47
* Patch by Vladimir Marangoz to allow freeing of the allocated blocks ofGuido van Rossum1999-03-101-15/+64
* Added _Fini() routines to free up some memoryGuido van Rossum1997-08-051-0/+17
* Quickly renamed the last directory.Guido van Rossum1997-05-021-156/+163
* Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bitGuido van Rossum1997-01-141-2/+2
* Changed hex() and oct() again, to never emit a '-' sign.Guido van Rossum1997-01-121-7/+2
* Subtle change to hex/oct formatting so the largest negative numberGuido van Rossum1997-01-101-2/+2
* Fix overflow test for multiply to catch some cases it missed.Guido van Rossum1997-01-061-2/+4
* Fix core dump from pow(x,y,0).Guido van Rossum1996-12-061-7/+9
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* fix memory leak and null pointer dereferenceGuido van Rossum1995-01-101-0/+2
* Added 1995 to copyright message.Guido van Rossum1995-01-041-2/+2
* Lots of minor changes. Note for mappingobject.c: the hash table pointerGuido van Rossum1995-01-021-1/+0
* mods by Andrew Kuchling to implementGuido van Rossum1994-08-291-41/+240
* Added getmaxint() so sys can initialize sys.maxint.Guido van Rossum1993-12-241-0/+6
* * timemodule.c: Add hack for Solaris 2.Guido van Rossum1993-11-231-0/+2
* Changes to make range checks portable to 64-bit machines.Guido van Rossum1993-10-261-3/+21
* intobject.c: Save references to small integers, so that they can beSjoerd Mullender1993-10-151-0/+37
* * Extended X interface: pixmap objects, colormap objects visual objects,Sjoerd Mullender1993-10-111-1/+1
* * Microscopic corrections to make things compile on the Cray APP.Guido van Rossum1993-04-071-2/+2
* * Changed all copyright messages to include 1993.Guido van Rossum1993-03-291-12/+20
* * Changed many files to use mkvalue() instead of newtupleobject().Guido van Rossum1993-03-161-14/+4
* Made builtins int(), long(), float(), oct() and hex() more generic.Guido van Rossum1992-09-121-0/+59
* Copyright for 1992 addedGuido van Rossum1992-04-051-1/+1
* lint fixGuido van Rossum1992-03-271-2/+3
* Make / and % do the same as divmod.Guido van Rossum1992-01-191-117/+67
* Different shift implementation.Guido van Rossum1992-01-141-2/+34
* Improved exceptions.Guido van Rossum1991-12-101-13/+15