summaryrefslogtreecommitdiff
path: root/Objects/complexobject.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-2/+2
* bpo-29602: fix signed zero handling in complex constructor (#204)Mark Dickinson2017-02-201-3/+3
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-24/+24
* Issue #22463: Backport compiler warning fixes and workaroundsMartin Panter2016-06-211-1/+1
* Issue #25678: Copy buffer objects to null-terminated strings.Serhiy Storchaka2015-11-201-1/+1
* Issue #22604: Fix assertion error in debug mode when dividing a complex numbe...Antoine Pitrou2014-10-101-2/+6
* #19068: use imperative mood in complex object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-061-2/+2
* Issue #8748: Fix incorrect results from comparisons between an integerMark Dickinson2010-05-301-9/+54
* Remove declaration for unused variable.Mark Dickinson2010-05-301-1/+0
* Issue #5211: Complete removal of implicit coercions for the complexMark Dickinson2010-05-301-19/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-971/+971
* #7482: clarify error message in case of division by zero of float and complex...Ezio Melotti2010-02-221-2/+2
* Issue #5211: Fix complex type to avoid implicit calls toMark Dickinson2010-02-211-26/+45
* factor out __complex__ lookup code to fix another caseBenjamin Peterson2010-01-041-50/+44
* do correct lookup of the __complex__ methodBenjamin Peterson2010-01-041-8/+14
* Include ieeefp.h (when available) in pyport.h instead of individually inMark Dickinson2009-11-281-4/+0
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-261-16/+29
* Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72...Mark Dickinson2009-05-201-9/+0
* Issue #6044: remove confusing wording from complex -> integer andMark Dickinson2009-05-171-3/+3
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-7/+10
* Eliminate some locale-dependent calls to isspace and tolower.Mark Dickinson2009-05-031-4/+4
* Issue #1588: Add complex.__format__.Eric Smith2009-04-301-0/+37
* Reset errno before both calls to PyOS_ascii_strtod, not just one.Mark Dickinson2009-04-261-2/+2
* Fix typo in complex parsing code; expand tests.Mark Dickinson2009-04-251-1/+1
* Fix missing 'return NULL'Mark Dickinson2009-04-241-1/+1
* Issue #5816:Mark Dickinson2009-04-241-164/+158
* 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