- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
- cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 16 years ago
- 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
- 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 16 years ago
- 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 17 years ago
- bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 17 years ago
- a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 17 years ago
- fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 17 years ago
- 587c2bf Merged revisions 60053-60078 via svnmerge from by Christian Heimes · 17 years ago
- e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
- 69a7963 Merged revisions 59202-59211 via svnmerge from by Christian Heimes · 17 years ago
- 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
- ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
- 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
- 46334cd Kill div, mod and divmod on complex (already deprecated in 2.x). by Guido van Rossum · 17 years ago
- 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
- 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
- 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
- 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
- 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
- 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
- 18a67ba Fix comparing complex to non-complex numbers. by Guido van Rossum · 18 years ago
- 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
- 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- c404ff2 patch [ 1118729 ] Error in representation of complex numbers(again) by Georg Brandl · 19 years ago
- 5d01aa4 Bug #1079011: Incorrect error message (somewhat) by Raymond Hettinger · 20 years ago
- 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 20 years ago
- 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
- 0970dba Remove 'e.g.' from error message by Raymond Hettinger · 21 years ago
- 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 21 years ago
- 5ecd6c4 Fix typo in comment. by Walter Dörwald · 21 years ago
- 4eadfa2 Fix from Greg Chapman from SF bug #695651: a complex subclass by Guido van Rossum · 22 years ago
- 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
- 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 22 years ago
- e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
- 65ce6de Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from pyconfig.h. by Guido van Rossum · 22 years ago
- 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
- 69cf3c7 Deprecate % as well. The message for deprecation of //, % and divmod by Guido van Rossum · 23 years ago
- 9ec4c78 SF bug #543387. by Guido van Rossum · 23 years ago
- 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 23 years ago
- aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
- bab22be SF bug 533198: Complex power underflow raises exception. by Tim Peters · 23 years ago
- fa2e4c2 Declare real and imag as read-only attributes. by Guido van Rossum · 23 years ago
- 526c7a0 Ensure that complex() only accepts a string argument as the first arg, by Fred Drake · 23 years ago
- 01d697a complex_to_buf(), complex_subtype_from_c_complex(): Conversion of by Barry Warsaw · 23 years ago
- 70e3688 complex_subtype_from_string(): move the declaration of s_buffer[] out by Guido van Rossum · 23 years ago
- 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
- 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
- 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
- 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
- 6380596 complex_coerce(): add explicit PyComplex_Check() test. Previously, by Guido van Rossum · 23 years ago
- 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
- 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
- 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
- 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
- 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
- 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
- 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
- e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
- 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 24 years ago
- 7069512 When 1.6 boosted the # of digits produced by repr(float), repr(complex) by Tim Peters · 24 years ago
- be4cbb1 Use rich comparisons to fulfill an old wish: complex numbers now raise by Guido van Rossum · 24 years ago
- d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 39dce29 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. by Tim Peters · 24 years ago
- 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
- 4288c80 ANSI-fication of the sources. by Fred Drake · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
- bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
- 3bbef60 Ai! complex_nonzero() has && which should be ||, else decidedly by Guido van Rossum · 26 years ago
- 8530ef6 Add check to conjugate() that there are no excess arguments. by Guido van Rossum · 27 years ago
- 9678394 Got rid of c_error in favor of errno (and EDOM/ERANGE). by Guido van Rossum · 27 years ago
- c0b618a Quickly renamed the last directory. by Guido van Rossum · 28 years ago
- 8017767 Remove unused variable. by Guido van Rossum · 28 years ago
- c054d70 Get rid of .conj pseudo data attribute for complex numbers. by Guido van Rossum · 28 years ago
- 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 28 years ago
- 09e6ad0 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
- 919cf1a New, better hash for floating point and complex by Guido van Rossum · 28 years ago
- da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
- 2404858 Oops... Need to clear c_error before calling c_quot(). by Guido van Rossum · 28 years ago
- 3be12e9 Properly(?) implemented remainder and divmod (Tim Hochberg) by Guido van Rossum · 28 years ago
- d4ab3cd Raise exception instead of dropping imag part for conversion to int, by Guido van Rossum · 28 years ago