summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
Commit message (Expand)AuthorAgeFilesLines
* Removed static function complex_format, moved it into complex_repr. Modified ...Eric Smith2010-12-041-10/+8
* Issue #10557: Fixed error messages from float() and other numericAlexander Belopolsky2010-12-041-13/+17
* #6780: fix complex() constructor TypeError messageVictor Stinner2010-12-031-1/+1
* follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-231-7/+7
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-2/+2
* Issue #9337: Make float.__str__ identical to float.__repr__.Mark Dickinson2010-08-041-7/+1
* Issue #8188: Introduce a new scheme for computing hashes of numbersMark Dickinson2010-05-231-9/+9
* Issue #8748: Fix two issues with comparisons between complex and integerMark Dickinson2010-05-211-8/+44
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-806/+806
* Issue #7845: Make 1j.__le__(2j) return NotImplemented rather than raising Ty...Mark Dickinson2010-03-131-4/+2
* Merged revisions 78319 via svnmerge fromEzio Melotti2010-02-221-1/+1
* Merged revisions 77292-77293 via svnmerge fromBenjamin Peterson2010-01-041-36/+26
* Merged revisions 76561 via svnmerge fromMark Dickinson2009-11-281-4/+0
* Make sure memory is freed on error in complex_subtype_from_string.Mark Dickinson2009-10-261-8/+7
* Remove length limitation on string arguments to complex()Mark Dickinson2009-10-261-7/+11
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-4/+0
* Issue #5829: complex('1e500') shouldn't raise OverflowErrorMark Dickinson2009-05-201-2/+2
* Merged revisions 72718 via svnmerge fromMark Dickinson2009-05-171-2/+2
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-6/+6
* Merged revisions 72253 via svnmerge fromMark Dickinson2009-05-031-4/+4
* Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson2009-05-031-18/+14
* Issue #1588: Add complex.__format__.Eric Smith2009-04-301-0/+19
* Merged revisions 71963 via svnmerge fromMark Dickinson2009-04-261-2/+2
* Merged revisions 71869 via svnmerge fromMark Dickinson2009-04-251-1/+1
* Make sure that complex parsing code and corresponding testsMark Dickinson2009-04-241-26/+85
* Issue #5816: Simplify code for parsing and printing of complex numbers.Mark Dickinson2009-04-231-215/+103
* The other half of Issue #1580: use short float repr where possible.Eric Smith2009-04-161-70/+97
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-1/+1
* Issue 4910, patch 2 of (probably) 3: pave the way for renaming ofMark Dickinson2009-01-151-9/+1
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-111-3/+0
* Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,...Georg Brandl2008-06-101-1/+2
* Merged revisions 62380,62382-62383 via svnmerge fromChristian Heimes2008-04-191-3/+61
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-0/+4
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-7/+40
* Merged revisions 60379-60382 via svnmerge fromChristian Heimes2008-01-281-5/+6
* Merged revisions 60053-60078 via svnmerge fromChristian Heimes2008-01-191-34/+34
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-031-0/+1
* Merged revisions 59202-59211 via svnmerge fromChristian Heimes2007-11-281-9/+15
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-1/+1
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-7/+3
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-11/+1
* Kill div, mod and divmod on complex (already deprecated in 2.x).Guido van Rossum2007-08-011-55/+15
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+1
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-2/+2
* Change float.__str__() and complex.__str__() to returnWalter Dörwald2007-05-311-1/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* 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-11/+91
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-4/+0