summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* PyLong_FromString(): Nailed a small memory leak. In the str==startBarry Warsaw1999-01-271-0/+1
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-18/+0
* Remove unreachable code. (Sjoerd)Guido van Rossum1998-10-091-8/+0
* Patches from Greg Stein to support 'P' format in struct module'sGuido van Rossum1998-09-181-0/+55
* Undo victim of careless global substitute ("long long_hash" wasGuido van Rossum1998-09-131-1/+1
* Patch by Mark Hammond to support 64-bit ints on MS platforms.Guido van Rossum1998-08-251-22/+22
* Two patches by Jason Harper:Guido van Rossum1998-08-111-37/+96
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-0/+192
* Fix a potential problem in PyLong_FromString(): could fall through theGuido van Rossum1998-08-041-0/+2
* Add check in long-to-int conversion for at least one digit.Guido van Rossum1998-06-221-0/+7
* Subject: Buglet in PyLong_AsLongGuido van Rossum1998-05-261-9/+19
* Make new gcc -Wall happyGuido van Rossum1998-04-101-1/+1
* Quickly renamed the last directory.Guido van Rossum1997-05-021-348/+360
* Tweaks to keep the Microsoft compiler quiet.Guido van Rossum1997-04-091-14/+14
* New long_lshift, without restriction on size of shift count, by Tim Peters.Guido van Rossum1997-03-161-26/+22
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-141-1/+1
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-2/+6
* Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong().Guido van Rossum1997-01-031-0/+56
* Fix newlongobject so it will work for 64-bit as well as 32-bit hardwareGuido van Rossum1996-12-051-12/+15
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* changes for MPWGuido van Rossum1995-03-041-1/+5
* use Py_CHARMASK; and don't check for neg. float to the float power hereGuido van Rossum1995-02-101-2/+2
* long_scan is no longer usedGuido van Rossum1995-01-171-0/+2
* fix memory leak and null pointer dereferenceGuido van Rossum1995-01-101-2/+4
* 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
* * Include/classobject.h, Objects/classobject.c, Python/ceval.c:Guido van Rossum1994-09-281-1/+1
* New patches by Andrew to fix various problemsGuido van Rossum1994-08-291-33/+67
* * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c,Guido van Rossum1993-11-011-0/+1
* * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c.Guido van Rossum1993-06-171-2/+2
* * Changed all copyright messages to include 1993.Guido van Rossum1993-03-291-0/+32
* * Changed many files to use mkvalue() instead of newtupleobject().Guido van Rossum1993-03-161-0/+2
* * Added Fixcprt.py: script to fix copyright message.Guido van Rossum1993-01-261-2/+2
* Added separate main program for the Mac: macmain.cGuido van Rossum1993-01-211-1/+4
* * Makefile: added IMGFILE; moved some stuff around.Guido van Rossum1992-09-171-16/+1
* Made builtins int(), long(), float(), oct() and hex() more generic.Guido van Rossum1992-09-121-0/+46
* oct(0) should return '0', not '00'Guido van Rossum1992-08-141-2/+4
* * classobject.[ch], {float,long,int}object.c, bltinmodule.c:Guido van Rossum1992-08-141-0/+15
* Copyright for 1992 addedGuido van Rossum1992-04-051-1/+1
* Lint stuff (involves casts, yuck!)Guido van Rossum1992-03-271-27/+33
* Add prototypes.Guido van Rossum1992-01-191-105/+148
* Changed to 2's complement bitwise ops. Got rid of ZABS etc.Guido van Rossum1992-01-141-306/+195
* Fixed bug in long masking ops.Guido van Rossum1991-12-311-28/+31
* Use new exceptions.Guido van Rossum1991-12-101-7/+7
* Made the sign use one's complement; implemented shifting and masking operators.Guido van Rossum1991-11-191-83/+413
* Changed convert to add '0' or '0x' prefix for oct/hex.Guido van Rossum1991-10-241-2/+15
* printobject now returns an error codeGuido van Rossum1991-06-071-9/+6
* Added dnewlongobject(), function to convert double to long int.Guido van Rossum1991-06-031-0/+39
* Fix off-by-one error in long_repr.Guido van Rossum1991-05-281-5/+50
* Many small changesGuido van Rossum1991-05-141-17/+48