summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merge branch changes (coercion, rich comparisons) into trunk.Guido van Rossum2001-09-271-4/+2
* Do the same thing to complex that I did to str: the rich comparisonGuido van Rossum2001-09-241-7/+10
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-3/+5
* complex_coerce(): add explicit PyComplex_Check() test. Previously,Guido van Rossum2001-09-191-0/+5
* Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-121-11/+19
* Revert parts of patch #453627, documenting the resulting test failuresMartin v. Löwis2001-09-061-17/+1
* Patch #453627: Define the following macros when compiling on a UnixWare 7.x s...Martin v. Löwis2001-09-051-1/+17
* Raise OverflowError when appropriate on long->float conversion. Most ofTim Peters2001-09-041-0/+2
* PEP 238 documented -Qwarn as warning only for classic int or longGuido van Rossum2001-09-041-1/+1
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-311-1/+22
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-1/+3
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-4/+2
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-0/+30
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-13/+290
* SF bug [ #409448 ] Complex division is braindeadTim Peters2001-03-181-8/+58
* When 1.6 boosted the # of digits produced by repr(float), repr(complex)Tim Peters2001-03-111-8/+32
* Use rich comparisons to fulfill an old wish: complex numbers now raiseGuido van Rossum2001-01-181-49/+84
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-4/+0
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470.Tim Peters2000-08-151-46/+17
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* ANSI-fication of the sources.Fred Drake2000-07-091-98/+48
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* This patch addresses two main issues: (1) There exist some non-fatalFred Drake2000-06-291-28/+9
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-5/+6
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-1/+1
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-201-1/+1
* Ai! complex_nonzero() has && which should be ||, else decidedlyGuido van Rossum1999-01-251-1/+1