index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
longobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowed
Facundo Batista
2008-01-19
1
-2/+0
*
long(float('nan')) raises an OverflowError as discussed on the mailing list a...
Christian Heimes
2008-01-15
1
-1/+3
*
Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...
Christian Heimes
2008-01-04
1
-1/+1
*
Merged revisions 59680-59695 via svnmerge from
Christian Heimes
2008-01-04
1
-0/+3
*
Drop _PyLong_FitsInLong. Fixes #1666.
Martin v. Löwis
2007-12-20
1
-13/+0
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-137/+137
*
Removed PyInt_GetMax and sys.maxint
Christian Heimes
2007-12-04
1
-6/+0
*
Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.
Martin v. Löwis
2007-12-04
1
-5/+19
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-3/+3
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-8/+12
*
Remove more cruft leftover from nb_coerce. Rename nb_coerce to
Neil Schemenauer
2007-09-21
1
-1/+1
*
Merged revisions 58203-58210 via svnmerge from
Thomas Wouters
2007-09-19
1
-0/+8
*
Drop convert_binop.
Martin v. Löwis
2007-09-10
1
-110/+48
*
round(1e20) wrongly returned 0.
Thomas Heller
2007-08-31
1
-1/+0
*
Use unicode and remove support for some uses of str8.
Neal Norwitz
2007-08-26
1
-11/+3
*
Implementation of PEP 3101, Advanced String Formatting.
Eric Smith
2007-08-25
1
-0/+13
*
Finish the work on __round__ and __trunc__.
Guido van Rossum
2007-08-23
1
-0/+36
*
Change the error reporting when an invalid string is encountered to avoid
Guido van Rossum
2007-08-22
1
-18/+9
*
Oops. I killed a bit too much and not enough when I deleted intobject.c.
Guido van Rossum
2007-08-07
1
-0/+6
*
Changes to long and float by Jeffrey Jasskin to conform to PEP 3141.
Guido van Rossum
2007-08-01
1
-22/+32
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-286/+285
*
Merged revisions 55962-56019 via svnmerge from
Guido van Rossum
2007-06-18
1
-1/+1
*
Merged revisions 55817-55961 via svnmerge from
Guido van Rossum
2007-06-13
1
-29/+40
*
Make test_base64 pass.
Guido van Rossum
2007-05-22
1
-4/+13
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-12/+14
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-4/+0
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-9/+22
*
Another refleak, this time in PyLong_AsLong. Fixes leaks showing in
Georg Brandl
2007-02-26
1
-33/+43
*
Merged revisions 53875-53911 via svnmerge from
Thomas Wouters
2007-02-25
1
-1/+2
*
Fix refcounting bugs related to CONVERT_BINOP.
Martin v. Löwis
2007-02-06
1
-8/+26
*
Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact.
Guido van Rossum
2007-01-15
1
-5/+5
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-118/+402
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-24/+47
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-2/+2
*
Get rid of more coerce cruft (really check in this time :-)
Neal Norwitz
2006-08-29
1
-17/+1
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
1
-4/+10
*
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters
2006-08-21
1
-42/+7
*
repr() of a long int no longer produces a trailing 'L'.
Guido van Rossum
2006-08-18
1
-15/+7
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-4/+4
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-2/+1
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-3/+74
*
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters
2006-05-27
1
-59/+210
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-35/+53
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-18/+0
*
Checking in the code for PEP 357.
Guido van Rossum
2006-03-07
1
-7/+42
*
SF #1444030: Fix several potential defects found by Coverity.
Hye-Shik Chang
2006-03-07
1
-1/+7
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-55/+133
*
As discussed on python-dev, silence three gcc-4.0.x warnings, using assert()
Thomas Wouters
2006-02-01
1
-2/+9
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-1/+2
[next]