| Commit message (Expand) | Author | Age | Files | Lines |
* | Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -4/+12 |
|
|
* | PyUnicode_FromEncodedObject(): Repair memory leak in an error case. | Tim Peters | 2001-09-11 | 1 | -2/+2 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 2 | -2/+8 |
|
|
* | Fix tortured comment -- I must be on drugs today. | Tim Peters | 2001-09-10 | 1 | -2/+2 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+5 |
|
|
* | More for SF bug [#460020] bug or feature: unicode() and subclasses | Tim Peters | 2001-09-10 | 1 | -1/+5 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 2 | -3/+29 |
|
|
* | _portable_fseek(): | Guido van Rossum | 2001-09-10 | 1 | -0/+6 |
|
|
* | PyObject_Dir(): | Guido van Rossum | 2001-09-10 | 1 | -2/+6 |
|
|
* | Generalize operator.indexOf (PySequence_Index) to work with any | Tim Peters | 2001-09-08 | 3 | -74/+66 |
|
|
* | PyClass_New(): put the extended Don Beaudry hook back in. When one of | Guido van Rossum | 2001-09-07 | 1 | -4/+14 |
|
|
* | PySequence_Check(), PyMapping_Check(): only return true if the | Guido van Rossum | 2001-09-07 | 1 | -2/+4 |
|
|
* | PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessing | Guido van Rossum | 2001-09-07 | 1 | -0/+3 |
|
|
* | long_true_divide: reliably force underflow to 0 when the denominator | Tim Peters | 2001-09-06 | 1 | -0/+2 |
|
|
* | Rename 'getset' to 'property'. | Guido van Rossum | 2001-09-06 | 1 | -23/+23 |
|
|
* | Revert parts of patch #453627, documenting the resulting test failures | Martin v. Löwis | 2001-09-06 | 1 | -17/+1 |
|
|
* | Enable large file support on Win32 systems. | Tim Peters | 2001-09-06 | 1 | -1/+1 |
|
|
* | Better error msg for 3-arg pow with a float argument. | Tim Peters | 2001-09-05 | 1 | -1/+1 |
|
|
* | Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. | Guido van Rossum | 2001-09-05 | 1 | -0/+30 |
|
|
* | Rework the way we try to check for libm overflow, given that C99 no longer | Tim Peters | 2001-09-05 | 1 | -16/+1 |
|
|
* | Changes to automatically enable large file support on some systems. | Guido van Rossum | 2001-09-05 | 1 | -12/+20 |
|
|
* | Patch #453627: Define the following macros when compiling on a UnixWare 7.x s... | Martin v. Löwis | 2001-09-05 | 1 | -1/+17 |
|
|
* | 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 |
|
|