| Commit message (Expand) | Author | Age | Files | Lines |
* | proxy_compare(): Make sure that we unwrap both objects being compared if | Fred Drake | 2001-12-19 | 1 | -6/+13 |
|
|
* | - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it's | Guido van Rossum | 2001-12-17 | 1 | -0/+16 |
|
|
* | Portability fix: Not every compiler implements the extension of | Sjoerd Mullender | 2001-12-17 | 1 | -1/+1 |
|
|
* | SF patch #493452: docstrings for staticmethod/classmethod (Skip | Guido van Rossum | 2001-12-17 | 1 | -2/+41 |
|
|
* | SF bug #493561: incorrect format string descrobject.c (Neal Norwitz) | Guido van Rossum | 2001-12-15 | 1 | -2/+2 |
|
|
* | (Merge into trunk.) | Guido van Rossum | 2001-12-14 | 1 | -1/+3 |
|
|
* | Ensure that complex() only accepts a string argument as the first arg, | Fred Drake | 2001-12-13 | 1 | -1/+13 |
|
|
* | float_floor_div: An expression like 3.//1j crashed the interpreter, or | Tim Peters | 2001-12-11 | 1 | -9/+12 |
|
|
* | float_int_div(): For clarity, move this closer to the other float | Tim Peters | 2001-12-11 | 1 | -16/+16 |
|
|
* | SF bug #491415 PyDict_UpdateFromSeq2() unused | Tim Peters | 2001-12-11 | 1 | -8/+2 |
|
|
* | Make sure that when we invoke callback functions associated with weak | Fred Drake | 2001-12-10 | 1 | -20/+24 |
|
|
* | Well what do you know. The Python implementation contained the same | Guido van Rossum | 2001-12-10 | 1 | -2/+2 |
|
|
* | Fix the Python property class in a comment right. | Guido van Rossum | 2001-12-10 | 1 | -22/+23 |
|
|
* | property_descr_get(): Fix a curious bug in the property() type: when | Guido van Rossum | 2001-12-10 | 1 | -5/+5 |
|
|
* | SF patch #491049 (David Jacobs): Small PyString_FromString optimization | Guido van Rossum | 2001-12-10 | 1 | -1/+1 |
|
|
* | _PyTuple_Resize(): this dumped core on tuple(globals()) for me. Turns | Guido van Rossum | 2001-12-07 | 1 | -6/+8 |
|
|
* | PyString_FromString: this requires its argument be non-NULL, but doesn't | Tim Peters | 2001-12-06 | 1 | -1/+4 |
|
|
* | Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode). | Guido van Rossum | 2001-12-06 | 1 | -6/+3 |
|
|
* | Fix memory leak in dict_to_map(), SF bug [ #485152 ] memory leak in test_scope. | Jeremy Hylton | 2001-12-06 | 1 | -8/+11 |
|
|
* | Little stuff. | Jeremy Hylton | 2001-12-06 | 1 | -8/+9 |
|
|
* | The previous checkin to clear __slots__ variables did a little bit of | Guido van Rossum | 2001-12-06 | 1 | -20/+20 |
|
|
* | Fix SF bug #489581: __slots__ leak. | Guido van Rossum | 2001-12-05 | 1 | -2/+22 |
|
|
* | At the PythonLabs meeting someone mentioned it would make Jim really | Guido van Rossum | 2001-12-05 | 1 | -2/+2 |
|
|
* | SF bug #488480: integer multiply to return -max_int-1. | Tim Peters | 2001-12-04 | 1 | -127/+63 |
|
|
* | Fix SF bug #486144: Uninitialized __slot__ vrbl is None. | Guido van Rossum | 2001-12-04 | 1 | -2/+4 |
|
|
* | long_mul(): The PyNumber_Multiply() call can return a long if the | Guido van Rossum | 2001-12-04 | 1 | -0/+6 |
|
|
* | PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is a | Guido van Rossum | 2001-12-04 | 1 | -20/+72 |
|
|
* | function_call(): Remove a bogus (and I mean *really* bogus) call to | Guido van Rossum | 2001-12-03 | 1 | -1/+0 |
|
|
* | Fix of SF bug #475877 (Mutable subtype instances are hashable). | Guido van Rossum | 2001-12-03 | 2 | -3/+17 |
|
|
* | Address SF patch #480716 as well as related issues. | Guido van Rossum | 2001-12-03 | 1 | -17/+36 |
|
|
* | Add more inline documentation, as contributed in #487906. | Martin v. Löwis | 2001-12-03 | 1 | -3/+8 |
|
|
* | PyString_FromFormatV, string_repr: document why these use sprintf | Tim Peters | 2001-12-03 | 1 | -5/+16 |
|
|
* | Fix for SF bug #485678. | Guido van Rossum | 2001-12-03 | 1 | -1/+1 |
|
|
* | Patch 487906: update inline docs. | Martin v. Löwis | 2001-12-02 | 1 | -13/+21 |
|
|
* | SF bug #487743: test_builtin fails on 64 bit platform. | Tim Peters | 2001-12-01 | 1 | -1/+1 |
|
|
* | Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the | Jack Jansen | 2001-11-30 | 1 | -2/+7 |
|
|
* | PyFloat_AsStringEx(): This function takes an output char* but doesn't | Tim Peters | 2001-11-28 | 1 | -8/+24 |
|
|
* | PyFile_WriteString(): change prototype so that the string arg is | Tim Peters | 2001-11-28 | 1 | -1/+1 |
|
|
* | weakref_repr(), proxy_repr(): Conversion of sprintf() to | Barry Warsaw | 2001-11-28 | 1 | -8/+11 |
|
|
* | formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf() | Barry Warsaw | 2001-11-28 | 1 | -4/+6 |
|
|
* | structseq_new(): Conversion of sprintf() to PyOS_snprintf() for buffer | Barry Warsaw | 2001-11-28 | 1 | -1/+2 |
|
|
* | PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of | Barry Warsaw | 2001-11-28 | 1 | -5/+7 |
|
|
* | PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() for | Barry Warsaw | 2001-11-28 | 1 | -2/+4 |
|
|
* | complex_to_buf(), complex_subtype_from_c_complex(): Conversion of | Barry Warsaw | 2001-11-28 | 1 | -8/+10 |
|
|
* | sprintf -> PyOS_snprintf in some "obviously safe" cases. | Tim Peters | 2001-11-28 | 1 | -4/+8 |
|
|
* | Fix for bug #485951: repr diff between string and unicode. | Marc-André Lemburg | 2001-11-28 | 1 | -1/+1 |
|
|
* | Fixes for possible buffer overflows in sprintf() usages. | Marc-André Lemburg | 2001-11-28 | 1 | -1/+1 |
|
|
* | PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few | Guido van Rossum | 2001-11-24 | 1 | -5/+10 |
|
|
* | Fix for bug #438164: %-formatting using Unicode objects. | Marc-André Lemburg | 2001-11-20 | 1 | -0/+4 |
|
|
* | Changing diapers reminded Guido that he wanted to allow for some measure | Tim Peters | 2001-11-14 | 1 | -29/+97 |
|
|