summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-285-9/+14
* Use PyOS_snprintf() instead of sprintf().Jeremy Hylton2001-11-281-4/+4
* Use PyOS_snprintf() at some cost even though it was correct before.Jeremy Hylton2001-11-281-6/+7
* Use PyOS_vsnprintf() and check its return value.Jeremy Hylton2001-11-281-2/+9
* ste_repr(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-4/+5
* aix_loaderror(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-1/+1
* Reverting last change so we don't have to think about the assert macroBarry Warsaw2001-11-281-5/+4
* Use strncpy() instead of sprintf() in calculate_path().Jeremy Hylton2001-11-281-15/+19
* code_repr(), com_addop_varname(), com_list_comprehension(),Barry Warsaw2001-11-281-32/+42
* PyGrammar_LabelRepr(): Conversion of sprintf() to PyOS_snprintf() forBarry Warsaw2001-11-281-4/+5
* PyWin_FindRegisteredModule(): Conversion of sprintf() toBarry Warsaw2001-11-281-3/+3
* 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
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-2813-39/+45
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-15/+18
* Repair a botched PyOS_snprintf conversion.Tim Peters2001-11-281-1/+1
* Use PyOS_snprintf when possible.Jeremy Hylton2001-11-281-34/+41
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-2815-42/+61
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-11/+11
* Checking in Zooko's version per SF patch #476866, plus my changes toGuido van Rossum2001-11-281-395/+429
* Removed preprocessor gimmick trying to force use of snprintf emulationTim Peters2001-11-281-8/+6
* Fix SF bug [ #476852 ] Some bad macros in abstract.hJeremy Hylton2001-11-281-2/+2
* Adding test for Unicode repr()-output.Marc-André Lemburg2001-11-281-0/+15
* 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-288-22/+17
* Re-arrange the modules in the "Internet Data Handling" chapter to try toFred Drake2001-11-281-9/+15
* Clarify that on some systems, lockf() using LOCK_EX requires that the fileFred Drake2001-11-281-4/+9
* Add synopsis for the SimpleXMLRPCServer module; used in the chapter-levelFred Drake2001-11-281-0/+1
* Clean up some markup cruft. A number of the macros that take noFred Drake2001-11-2840-187/+187
* __format(): Applied SF patch #482003 by Skip to fix multiline dictBarry Warsaw2001-11-282-1/+20
* Fix docstring typoAndrew M. Kuchling2001-11-281-1/+1
* Fix [ #484645 ] little bug in pycodegen.pyJeremy Hylton2001-11-271-1/+1
* SF bug #483469: crash on unbounded recursion in __del__.Tim Peters2001-11-271-0/+8
* SF bug 485175: buffer overflow in traceback.c.Tim Peters2001-11-272-3/+4
* test_formatdate(): Integrating Jack's 22b2 branch fix for Mac epoch:Barry Warsaw2001-11-271-3/+4
* Typo, spotted by Fredrik Lundh.Fred Drake2001-11-261-1/+1
* Typo, spotted by Detlef Lannert.Fred Drake2001-11-261-1/+1
* Tk-related modules should no longer be listed here.Fred Drake2001-11-261-13/+0
* Fix typo, extra markup constructs.Fred Drake2001-11-261-6/+6
* Add documentation for the PyCell* APIs.Fred Drake2001-11-262-0/+67
* Correctly create new-style classes in the examplesAndrew M. Kuchling2001-11-261-7/+13
* SF patch 483059: Avoid use of eval() in random.py, from Finn Bock.Tim Peters2001-11-251-6/+5
* Properly set static options for tixBalloon and tixResizeHandle.Martin v. Löwis2001-11-254-52/+214
* Patch #484847: Default to netscape.exe on OS/2.Martin v. Löwis2001-11-252-0/+12
* - Change all remaining assertions into verify() and vereq() calls.Guido van Rossum2001-11-241-14/+42
* _reduce():Guido van Rossum2001-11-241-3/+8