summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* (Merge into trunk.)Guido van Rossum2001-12-141-1/+3
* Ensure that complex() only accepts a string argument as the first arg,Fred Drake2001-12-131-1/+13
* float_floor_div: An expression like 3.//1j crashed the interpreter, orTim Peters2001-12-111-9/+12
* float_int_div(): For clarity, move this closer to the other floatTim Peters2001-12-111-16/+16
* SF bug #491415 PyDict_UpdateFromSeq2() unusedTim Peters2001-12-111-8/+2
* Make sure that when we invoke callback functions associated with weakFred Drake2001-12-101-20/+24
* Well what do you know. The Python implementation contained the sameGuido van Rossum2001-12-101-2/+2
* Fix the Python property class in a comment right.Guido van Rossum2001-12-101-22/+23
* property_descr_get(): Fix a curious bug in the property() type: whenGuido van Rossum2001-12-101-5/+5
* SF patch #491049 (David Jacobs): Small PyString_FromString optimizationGuido van Rossum2001-12-101-1/+1
* _PyTuple_Resize(): this dumped core on tuple(globals()) for me. TurnsGuido van Rossum2001-12-071-6/+8
* PyString_FromString: this requires its argument be non-NULL, but doesn'tTim Peters2001-12-061-1/+4
* Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode).Guido van Rossum2001-12-061-6/+3
* Fix memory leak in dict_to_map(), SF bug [ #485152 ] memory leak in test_scope.Jeremy Hylton2001-12-061-8/+11
* Little stuff.Jeremy Hylton2001-12-061-8/+9
* The previous checkin to clear __slots__ variables did a little bit ofGuido van Rossum2001-12-061-20/+20
* Fix SF bug #489581: __slots__ leak.Guido van Rossum2001-12-051-2/+22
* At the PythonLabs meeting someone mentioned it would make Jim reallyGuido van Rossum2001-12-051-2/+2
* SF bug #488480: integer multiply to return -max_int-1.Tim Peters2001-12-041-127/+63
* Fix SF bug #486144: Uninitialized __slot__ vrbl is None.Guido van Rossum2001-12-041-2/+4
* long_mul(): The PyNumber_Multiply() call can return a long if theGuido van Rossum2001-12-041-0/+6
* PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is aGuido van Rossum2001-12-041-20/+72
* function_call(): Remove a bogus (and I mean *really* bogus) call toGuido van Rossum2001-12-031-1/+0
* Fix of SF bug #475877 (Mutable subtype instances are hashable).Guido van Rossum2001-12-032-3/+17
* Address SF patch #480716 as well as related issues.Guido van Rossum2001-12-031-17/+36
* Add more inline documentation, as contributed in #487906.Martin v. Löwis2001-12-031-3/+8
* PyString_FromFormatV, string_repr: document why these use sprintfTim Peters2001-12-031-5/+16
* Fix for SF bug #485678.Guido van Rossum2001-12-031-1/+1
* Patch 487906: update inline docs.Martin v. Löwis2001-12-021-13/+21
* SF bug #487743: test_builtin fails on 64 bit platform.Tim Peters2001-12-011-1/+1
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-301-2/+7
* PyFloat_AsStringEx(): This function takes an output char* but doesn'tTim Peters2001-11-281-8/+24
* PyFile_WriteString(): change prototype so that the string arg isTim Peters2001-11-281-1/+1
* weakref_repr(), proxy_repr(): Conversion of sprintf() toBarry Warsaw2001-11-281-8/+11
* formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf()Barry Warsaw2001-11-281-4/+6
* structseq_new(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-1/+2
* PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion ofBarry Warsaw2001-11-281-5/+7
* PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() forBarry Warsaw2001-11-281-2/+4
* complex_to_buf(), complex_subtype_from_c_complex(): Conversion ofBarry Warsaw2001-11-281-8/+10
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-4/+8
* Fix for bug #485951: repr diff between string and unicode.Marc-André Lemburg2001-11-281-1/+1
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-281-1/+1
* PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a fewGuido van Rossum2001-11-241-5/+10
* Fix for bug #438164: %-formatting using Unicode objects.Marc-André Lemburg2001-11-201-0/+4
* Changing diapers reminded Guido that he wanted to allow for some measureTim Peters2001-11-141-29/+97
* Add PyObject_CheckReadBuffer(), which returns true if its argumentJeremy Hylton2001-11-091-29/+35
* open_the_file(): Explicitly set errno to 0 before calling fopen().Tim Peters2001-11-091-0/+1
* open_the_file(): this routine has a borrowed reference to the fileTim Peters2001-11-091-1/+0
* Fix SF buf #476953: Bad more for opening file gives bad msg.Jeremy Hylton2001-11-091-2/+6
* long_true_divide(): decref its converted arguments. test_long_future.pyTim Peters2001-11-041-2/+5