| Commit message (Expand) | Author | Age | Files | Lines |
* | Make the error msgs in our pow() implementations consistent. | Tim Peters | 2001-09-05 | 3 | -8/+15 |
|
|
* | Try to recover from that glibc's ldexp apparently doesn't set errno on | Tim Peters | 2001-09-05 | 1 | -2/+2 |
|
|
* | At Guido's suggestion, here's a new C API function, PyObject_Dir(), like | Tim Peters | 2001-09-04 | 1 | -0/+145 |
|
|
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 2 | -2/+40 |
|
|
* | Move int_true_divide next to the other division routines. | Tim Peters | 2001-09-04 | 1 | -6/+6 |
|
|
* | Move long_true_divide next to the other division routines (for clarity!). | Tim Peters | 2001-09-04 | 1 | -6/+6 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 3 | -23/+27 |
|
|
* | PEP 238 documented -Qwarn as warning only for classic int or long | Guido van Rossum | 2001-09-04 | 2 | -2/+2 |
|
|
* | Introduce new private API function _PyLong_AsScaledDouble. Not used yet, | Tim Peters | 2001-09-04 | 1 | -0/+52 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 3 | -18/+20 |
|
|
* | Repair typo in comment. | Tim Peters | 2001-09-02 | 1 | -1/+1 |
|
|
* | Make dictionary() a real constructor. Accepts at most one argument, "a | Tim Peters | 2001-09-02 | 1 | -2/+29 |
|
|
* | Rewrite the tuple() docstring to parallel the list() docstring. | Tim Peters | 2001-09-02 | 1 | -4/+4 |
|
|
* | Repair apparent cut'n'pasteo in tuple() docstring. | Tim Peters | 2001-09-02 | 1 | -1/+1 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 5 | -5/+88 |
|
|
* | Fix a memory leak in str_subtype_new(). (All the other | Guido van Rossum | 2001-08-31 | 1 | -3/+3 |
|
|
* | Give 'super' a decent repr(), and readonly attributes to access the | Guido van Rossum | 2001-08-30 | 1 | -11/+36 |
|
|
* | PyObject_Repr(): add missing ">" back at end of format string: "<%s | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Squash new compiler wng. | Tim Peters | 2001-08-30 | 1 | -1/+1 |
|
|
* | Pytype_GenericAlloc(): round up size so we zap all four bytes of the | Guido van Rossum | 2001-08-30 | 1 | -16/+51 |
|
|
* | More stuff discovered while writing the simplest of testcases: | Guido van Rossum | 2001-08-30 | 1 | -2/+5 |
|
|
* | Ah, the joy of writing test cases... | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Removed some unreachable break statements to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -3/+0 |
|
|
* | Give the internal immutable list type .extend and .pop methods (they | Tim Peters | 2001-08-30 | 1 | -0/+2 |
|
|
* | Safety measures now that str and tuple are subclassable: | Guido van Rossum | 2001-08-30 | 1 | -1/+9 |
|
|
* | Make 'super' subclassable. (Not sure how useful this is yet. :-) | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Make unicode subclassable. | Guido van Rossum | 2001-08-30 | 1 | -2/+32 |
|
|
* | Make str and tuple types subclassable. | Guido van Rossum | 2001-08-30 | 2 | -4/+54 |
|
|
* | Make getset subclassable. | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Fix typo: double semicolons. | Guido van Rossum | 2001-08-30 | 2 | -2/+2 |
|
|
* | Squash new compiler wng in debug build. | Tim Peters | 2001-08-30 | 1 | -1/+1 |
|
|
* | Use new GC API. Remove usage of BASICSIZE macros. | Neil Schemenauer | 2001-08-29 | 1 | -18/+18 |
|
|
* | Use new GC API. | Neil Schemenauer | 2001-08-29 | 7 | -89/+66 |
|
|
* | Remove GC related code. It lives in gcmodule now. | Neil Schemenauer | 2001-08-29 | 1 | -26/+1 |
|
|
* | Make frames a PyVarObject. Use new GC API. | Neil Schemenauer | 2001-08-29 | 1 | -30/+14 |
|
|
* | Make int, long and float subclassable. | Guido van Rossum | 2001-08-29 | 3 | -14/+111 |
|
|
* | Fix super() so that it is usable for static methods (like __new__) as well. | Guido van Rossum | 2001-08-29 | 1 | -8/+27 |
|
|
* | Fix a typo in SLOT0 macro for the declaration of cache_str. | Guido van Rossum | 2001-08-28 | 1 | -1/+1 |
|
|
* | Finish the previous checkin: also avoid getattr when calling the method | Guido van Rossum | 2001-08-28 | 1 | -25/+93 |
|
|
* | Change in policy: when a slot_tp_xxx function looks for the __xxx__ method, | Guido van Rossum | 2001-08-28 | 1 | -15/+57 |
|
|
* | Two improvements suggested by Greg Stein: | Barry Warsaw | 2001-08-27 | 1 | -2/+5 |
|
|
* | PyString_FromFormatV: Massage platform %p output to match what gcc does, | Tim Peters | 2001-08-25 | 1 | -0/+8 |
|
|
* | getset_init(): the function name in the PyArg_ParseTuple() format | Guido van Rossum | 2001-08-24 | 1 | -1/+1 |
|
|
* | Improve the error message issued when an unbound method is called with | Guido van Rossum | 2001-08-24 | 1 | -3/+49 |
|
|
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 11 | -136/+95 |
|
|
* | PyString_FromFormat() and PyString_FromFormatV(): Largely ripped from | Barry Warsaw | 2001-08-24 | 1 | -0/+155 |
|
|
* | Add 'super', another new object type with magical properties. | Guido van Rossum | 2001-08-24 | 1 | -0/+155 |
|
|
* | Change the getset type to take an optional third function argument: | Guido van Rossum | 2001-08-24 | 1 | -9/+21 |
|
|
* | getset_descr_set(): guard against deletion (indicated by a set call | Guido van Rossum | 2001-08-24 | 1 | -1/+4 |
|
|
* | slot_tp_descr_get(): guard against NULL obj or type (bug reported by | Guido van Rossum | 2001-08-24 | 1 | -2/+11 |
|
|