| Commit message (Expand) | Author | Age | Files | Lines |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
|
|
* | patch [ 1118729 ] Error in representation of complex numbers(again) | Georg Brandl | 2005-09-16 | 1 | -6/+3 |
|
|
* | Bug #1079011: Incorrect error message (somewhat) | Raymond Hettinger | 2004-12-19 | 1 | -1/+1 |
|
|
* | Fix repr for negative imaginary part. Fixes #1013908. | Martin v. Löwis | 2004-08-22 | 1 | -2/+6 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 1 | -9/+14 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -2/+2 |
|
|
* | Remove 'e.g.' from error message | Raymond Hettinger | 2003-08-30 | 1 | -3/+3 |
|
|
* | complex_new(): This could leak when the argument was neither string nor | Tim Peters | 2003-08-15 | 1 | -0/+3 |
|
|
* | Fix typo in comment. | Walter Dörwald | 2003-06-17 | 1 | -1/+1 |
|
|
* | Fix from Greg Chapman from SF bug #695651: a complex subclass | Guido van Rossum | 2003-03-02 | 1 | -2/+3 |
|
|
* | Implement appropriate __getnewargs__ for all immutable subclassable builtin | Guido van Rossum | 2003-01-29 | 1 | -0/+7 |
|
|
* | complex() was the only numeric constructor that created a new instance | Raymond Hettinger | 2002-08-29 | 1 | -0/+9 |
|
|
* | Call me anal, but there was a particular phrase that was speading to | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
|
|
* | Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from | Guido van Rossum | 2002-06-13 | 1 | -2/+2 |
|
|
* | Close SF bug 563740. complex() now finds __complex__() in new style classes. | Raymond Hettinger | 2002-06-06 | 1 | -26/+23 |
|
|
* | Deprecate % as well. The message for deprecation of //, % and divmod | Guido van Rossum | 2002-04-15 | 1 | -1/+6 |
|
|
* | SF bug #543387. | Guido van Rossum | 2002-04-15 | 1 | -0/+5 |
|
|
* | SF bug 543840: complex(string) accepts strings with \0 | Tim Peters | 2002-04-14 | 1 | -1/+1 |
|
|
* | PyObject_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | SF bug 533198: Complex power underflow raises exception. | Tim Peters | 2002-03-22 | 1 | -3/+9 |
|
|
* | Declare real and imag as read-only attributes. | Guido van Rossum | 2002-02-08 | 1 | -2/+2 |
|
|
* | Ensure that complex() only accepts a string argument as the first arg, | Fred Drake | 2001-12-13 | 1 | -1/+13 |
|
|
* | complex_to_buf(), complex_subtype_from_c_complex(): Conversion of | Barry Warsaw | 2001-11-28 | 1 | -8/+10 |
|
|
* | complex_subtype_from_string(): move the declaration of s_buffer[] out | Guido van Rossum | 2001-10-25 | 1 | -1/+3 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -1/+2 |
|
|
* | Merge branch changes (coercion, rich comparisons) into trunk. | Guido van Rossum | 2001-09-27 | 1 | -4/+2 |
|
|
* | Do the same thing to complex that I did to str: the rich comparison | Guido van Rossum | 2001-09-24 | 1 | -7/+10 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -3/+5 |
|
|
* | complex_coerce(): add explicit PyComplex_Check() test. Previously, | Guido van Rossum | 2001-09-19 | 1 | -0/+5 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 1 | -11/+19 |
|
|
* | Revert parts of patch #453627, documenting the resulting test failures | Martin v. Löwis | 2001-09-06 | 1 | -17/+1 |
|
|
* | Patch #453627: Define the following macros when compiling on a UnixWare 7.x s... | Martin v. Löwis | 2001-09-05 | 1 | -1/+17 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 1 | -0/+2 |
|
|
* | PEP 238 documented -Qwarn as warning only for classic int or long | Guido van Rossum | 2001-09-04 | 1 | -1/+1 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -1/+22 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -1/+3 |
|
|
* | Patch #427190: Implement and use METH_NOARGS and METH_O. | Martin v. Löwis | 2001-08-16 | 1 | -4/+2 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 1 | -0/+30 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -13/+290 |
|
|
* | SF bug [ #409448 ] Complex division is braindead | Tim Peters | 2001-03-18 | 1 | -8/+58 |
|
|
* | When 1.6 boosted the # of digits produced by repr(float), repr(complex) | Tim Peters | 2001-03-11 | 1 | -8/+32 |
|
|
* | Use rich comparisons to fulfill an old wish: complex numbers now raise | Guido van Rossum | 2001-01-18 | 1 | -49/+84 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -4/+0 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. | Tim Peters | 2000-08-15 | 1 | -46/+17 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -98/+48 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|