summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-2/+2
* Fix comparing complex to non-complex numbers.Guido van Rossum2006-08-211-10/+4
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-46/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-7/+7
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-20/+76
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-2/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-6/+6
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-23/+0
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-2/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* patch [ 1118729 ] Error in representation of complex numbers(again)Georg Brandl2005-09-161-6/+3
* Bug #1079011: Incorrect error message (somewhat)Raymond Hettinger2004-12-191-1/+1
* Fix repr for negative imaginary part. Fixes #1013908.Martin v. Löwis2004-08-221-2/+6
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-9/+14
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-2/+2
* Remove 'e.g.' from error messageRaymond Hettinger2003-08-301-3/+3
* complex_new(): This could leak when the argument was neither string norTim Peters2003-08-151-0/+3
* Fix typo in comment.Walter Dörwald2003-06-171-1/+1
* Fix from Greg Chapman from SF bug #695651: a complex subclassGuido van Rossum2003-03-021-2/+3
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-291-0/+7
* complex() was the only numeric constructor that created a new instanceRaymond Hettinger2002-08-291-0/+9
* Call me anal, but there was a particular phrase that was speading toGuido van Rossum2002-08-191-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-2/+2
* Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up fromGuido van Rossum2002-06-131-2/+2
* Close SF bug 563740. complex() now finds __complex__() in new style classes.Raymond Hettinger2002-06-061-26/+23
* Deprecate % as well. The message for deprecation of //, % and divmodGuido van Rossum2002-04-151-1/+6
* SF bug #543387.Guido van Rossum2002-04-151-0/+5
* SF bug 543840: complex(string) accepts strings with \0Tim Peters2002-04-141-1/+1
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* SF bug 533198: Complex power underflow raises exception.Tim Peters2002-03-221-3/+9
* Declare real and imag as read-only attributes.Guido van Rossum2002-02-081-2/+2