summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Rehabilitated the fast-path richcmp code, and sped it up. It wasn'tTim Peters2001-11-041-31/+35
* No code change -- just trying to document the return conditions for allTim Peters2001-11-041-17/+43
* float_divmod(): the code wasn't sick enough to stop the MS optimizerTim Peters2001-11-011-1/+1
* SF bug #477221: abs and divmod act oddly with -0.0Tim Peters2001-11-011-9/+26
* float_abs() again: Guido pointed out that this could screw up in theTim Peters2001-11-011-6/+1
* PyFunction_Call() did not check the result of PyObject_Repr() for NULL, andFred Drake2001-11-011-2/+2
* SF bug #477221: abs and divmod act oddly with -0.0.Tim Peters2001-11-011-9/+11
* fix forMichael W. Hudson2001-10-311-2/+2
* Fix bad bug in structseq slicing (NULL pointers in result). Reported byTim Peters2001-10-301-1/+1
* Add values to tp_getattro and tp_flags so that dir(Ellipsis) willGuido van Rossum2001-10-301-14/+20
* Rename "dictionary" (type and constructor) to "dict".Tim Peters2001-10-292-6/+6
* Add __del__ callbacks. They are too useful to leave out.Guido van Rossum2001-10-291-0/+74
* When overriding __str__ or __repr__, set the tp_print slot to NULL.Guido van Rossum2001-10-291-0/+2
* PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()Fred Drake2001-10-281-5/+5
* SF bug #475327: type() produces incorrect error msgTim Peters2001-10-271-6/+21
* dictionary() constructor:Tim Peters2001-10-271-7/+5
* PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touchFred Drake2001-10-271-18/+11
* Be smarter about clearing the weakref lists for instances, instance methods,Fred Drake2001-10-262-3/+6
* Added two new functions to conveniently call functions/methods from C.Fred Drake2001-10-261-0/+76
* Generalize dictionary() to accept a sequence of 2-sequences. At theTim Peters2001-10-262-17/+103
* Allow assignment to newinstance.__dict__.Guido van Rossum2001-10-261-1/+24
* complex_subtype_from_string(): move the declaration of s_buffer[] outGuido van Rossum2001-10-251-1/+3
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-0/+7
* SF patch #474175 (Jay T Miller): file.readinto arg parsing bugGuido van Rossum2001-10-231-1/+2
* Referencable is not a word, so don't use it in an error message <wink>.Jeremy Hylton2001-10-221-2/+2
* cleanup indentationJeremy Hylton2001-10-221-1/+1
* Make the error message for unsupported operand types cleaner, inGuido van Rossum2001-10-222-8/+28
* Fix for SF bug #472940: can't getattr() attribute shown by dir()Guido van Rossum2001-10-221-28/+1
* Methods of built-in types now properly check for keyword argumentsGuido van Rossum2001-10-222-12/+25