summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-...Christian Heimes2008-04-191-6/+19
* Merged revisions 62380,62382-62383 via svnmerge fromChristian Heimes2008-04-191-0/+12
* PyLong_FromSsize_t was incorrect when sizeof(size_t) > sizeof(long);Mark Dickinson2008-04-151-12/+53
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-5/+5
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-5/+5
* Get the ref counting for static allocated longs right.Christian Heimes2008-02-011-9/+7
* Fixed multiple reinitialization of the Python interpreter. The small int list...Christian Heimes2008-01-311-23/+36
* Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowedFacundo Batista2008-01-191-2/+0
* long(float('nan')) raises an OverflowError as discussed on the mailing list a...Christian Heimes2008-01-151-1/+3
* 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