summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #5829: complex('1e-500') shouldn't raise an exception.Mark Dickinson2009-04-251-9/+9
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-9/+9
* Fixed complex.__getnewargs__() to not emit another complex object.Alexandre Vassalotti2008-06-041-1/+2
* Renamed PyString to PyBytesChristian Heimes2008-05-261-9/+9
* I finally got the time to update and merge Mark's and my trunk-math branch. T...Christian Heimes2008-04-181-3/+62
* Fix compiler warning about finite() missing on Solaris.Neal Norwitz2008-03-281-0/+4
* Fixed repr() and str() of complex numbers. Complex suffered from the same pro...Christian Heimes2008-02-151-7/+40
* static PyObject* variables should use PyString_InternFromString() instead of ...Christian Heimes2008-01-281-6/+7
* Indentation normalization.Georg Brandl2008-01-191-8/+8
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-6/+54
* Shut up a compiler warning.Guido van Rossum2007-12-031-0/+1
* Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign ofGuido van Rossum2007-11-271-9/+15
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-0/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-2/+1
* Patch #1675423: PyComplex_AsCComplex() now tries to convert an objectGeorg Brandl2007-03-171-1/+48
* Patch #1642844: comments to clarify the complexobject constructor.Georg Brandl2007-03-131-4/+25
* Patch #1491866: change the complex() constructor to allow parthensized forms....Collin Winter2007-03-091-5/+25
* Fix SF #1676971, Complex OverflowError has a typoNeal Norwitz2007-03-091-1/+1
* Use sizeof(buffer) instead of duplicating the constants to ensure they won'tNeal Norwitz2006-07-161-7/+7
* Correctly allocate complex types with tp_alloc. (bug #1498638)Georg Brandl2006-06-011-2/+2
* C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a...Skip Montanaro2006-04-181-1/+1
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-5/+5
* 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
* Ensure that complex() only accepts a string argument as the first arg,Fred Drake2001-12-131-1/+13
* complex_to_buf(), complex_subtype_from_c_complex(): Conversion ofBarry Warsaw2001-11-281-8/+10
* complex_subtype_from_string(): move the declaration of s_buffer[] outGuido van Rossum2001-10-251-1/+3
* Enable GC for new-style instances. This touches lots of files, sinceGuido van Rossum2001-10-051-1/+2