summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...Christian Heimes2008-01-041-1/+1
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-041-0/+3
* Drop _PyLong_FitsInLong. Fixes #1666.Martin v. Löwis2007-12-201-13/+0
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-137/+137
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-6/+0
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-5/+19
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-3/+3
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-8/+12
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-1/+1
* Merged revisions 58203-58210 via svnmerge fromThomas Wouters2007-09-191-0/+8
* Drop convert_binop.Martin v. Löwis2007-09-101-110/+48
* round(1e20) wrongly returned 0.Thomas Heller2007-08-311-1/+0
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-11/+3
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+13
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-231-0/+36
* Change the error reporting when an invalid string is encountered to avoidGuido van Rossum2007-08-221-18/+9
* Oops. I killed a bit too much and not enough when I deleted intobject.c.Guido van Rossum2007-08-071-0/+6
* Changes to long and float by Jeffrey Jasskin to conform to PEP 3141.Guido van Rossum2007-08-011-22/+32
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-286/+285
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-181-1/+1
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-29/+40
* Make test_base64 pass.Guido van Rossum2007-05-221-4/+13
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-12/+14
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-9/+22
* Another refleak, this time in PyLong_AsLong. Fixes leaks showing inGeorg Brandl2007-02-261-33/+43
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-251-1/+2
* Fix refcounting bugs related to CONVERT_BINOP.Martin v. Löwis2007-02-061-8/+26
* Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact.Guido van Rossum2007-01-151-5/+5
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-118/+402
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-24/+47
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-2/+2
* Get rid of more coerce cruft (really check in this time :-)Neal Norwitz2006-08-291-17/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-4/+10
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-42/+7
* repr() of a long int no longer produces a trailing 'L'.Guido van Rossum2006-08-181-15/+7
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-4/+4
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-2/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-3/+74
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-59/+210
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-35/+53
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-18/+0
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-7/+42
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-1/+7
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-55/+133
* As discussed on python-dev, silence three gcc-4.0.x warnings, using assert()Thomas Wouters2006-02-011-2/+9
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+2
* SF bug #1238681: freed pointer is used in longobject.c:long_pow().Tim Peters2005-07-171-5/+8
* SF bug #1224347: int/long unification and hex()Raymond Hettinger2005-06-291-2/+2