| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the | Jack Jansen | 2001-11-30 | 53 | -300/+1815 |
|
|
* | unicodedata_decomposition(): sprintf -> PyOS_snprintf. | Tim Peters | 2001-11-30 | 1 | -2/+4 |
|
|
* | Updated documentation for the new httplib interface, by Kalle Svensson. | Fred Drake | 2001-11-30 | 2 | -79/+140 |
|
|
* | Update the signature of PyFile_WriteString(). | Fred Drake | 2001-11-29 | 2 | -2/+2 |
|
|
* | More information about Tix support, contributed by Mike Clarkson. | Fred Drake | 2001-11-29 | 1 | -0/+101 |
|
|
* | Various cleanups & markup fixes, mostly relating to the stat and statvfs | Fred Drake | 2001-11-29 | 1 | -38/+77 |
|
|
* | Neil Schemenauer suggested a small improvement to one of the example REs. | Fred Drake | 2001-11-29 | 1 | -1/+1 |
|
|
* | writeline() --> writelines() | Fred Drake | 2001-11-29 | 1 | -1/+1 |
|
|
* | Use identity instead of equality when looking for referrers. Fixes #485781. | Martin v. Löwis | 2001-11-29 | 1 | -3/+4 |
|
|
* | New section of regular expression examples contributed by Skip Montanaro, | Fred Drake | 2001-11-29 | 1 | -0/+56 |
|
|
* | Clarify the description of the creation of an owned reference from an API | Fred Drake | 2001-11-29 | 1 | -5/+5 |
|
|
* | Add an index entry for the discussion of PyEval_CallObject(). | Fred Drake | 2001-11-29 | 1 | -8/+9 |
|
|
* | A few small changes: | Fred Drake | 2001-11-29 | 1 | -8/+17 |
|
|
* | SF bug 486278 SystemError: Python/getargs.c:1086: bad. | Tim Peters | 2001-11-29 | 2 | -8/+18 |
|
|
* | canonic(): don't use abspath() for filenames looking like <...>; this | Guido van Rossum | 2001-11-29 | 1 | -0/+2 |
|
|
* | SF bug 486480: zipfile __del__ is broken | Tim Peters | 2001-11-28 | 1 | -3/+3 |
|
|
* | PyFloat_AsStringEx(): This function takes an output char* but doesn't | Tim Peters | 2001-11-28 | 1 | -8/+24 |
|
|
* | Two screwups fixed for sizeof(char *) instead of sizeof(char []). | Jeremy Hylton | 2001-11-28 | 1 | -77/+82 |
|
|
* | PyFile_WriteString(): change prototype so that the string arg is | Tim Peters | 2001-11-28 | 2 | -2/+2 |
|
|
* | More sprintf -> PyOS_snprintf. | Tim Peters | 2001-11-28 | 5 | -9/+14 |
|
|
* | Use PyOS_snprintf() instead of sprintf(). | Jeremy Hylton | 2001-11-28 | 1 | -4/+4 |
|
|
* | Use PyOS_snprintf() at some cost even though it was correct before. | Jeremy Hylton | 2001-11-28 | 1 | -6/+7 |
|
|
* | Use PyOS_vsnprintf() and check its return value. | Jeremy Hylton | 2001-11-28 | 1 | -2/+9 |
|
|
* | ste_repr(): Conversion of sprintf() to PyOS_snprintf() for buffer | Barry Warsaw | 2001-11-28 | 1 | -4/+5 |
|
|
* | aix_loaderror(): Conversion of sprintf() to PyOS_snprintf() for buffer | Barry Warsaw | 2001-11-28 | 1 | -1/+1 |
|
|
* | Reverting last change so we don't have to think about the assert macro | Barry Warsaw | 2001-11-28 | 1 | -5/+4 |
|
|
* | Use strncpy() instead of sprintf() in calculate_path(). | Jeremy Hylton | 2001-11-28 | 1 | -15/+19 |
|
|
* | code_repr(), com_addop_varname(), com_list_comprehension(), | Barry Warsaw | 2001-11-28 | 1 | -32/+42 |
|
|
* | PyGrammar_LabelRepr(): Conversion of sprintf() to PyOS_snprintf() for | Barry Warsaw | 2001-11-28 | 1 | -4/+5 |
|
|
* | PyWin_FindRegisteredModule(): Conversion of sprintf() to | Barry Warsaw | 2001-11-28 | 1 | -3/+3 |
|
|
* | 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 |
|
|
* | Use PyOS_snprintf instead of sprintf. | Jeremy Hylton | 2001-11-28 | 13 | -39/+45 |
|
|
* | Use PyOS_snprintf instead of sprintf. | Jeremy Hylton | 2001-11-28 | 1 | -15/+18 |
|
|
* | Repair a botched PyOS_snprintf conversion. | Tim Peters | 2001-11-28 | 1 | -1/+1 |
|
|
* | Use PyOS_snprintf when possible. | Jeremy Hylton | 2001-11-28 | 1 | -34/+41 |
|
|
* | sprintf -> PyOS_snprintf in some "obviously safe" cases. | Tim Peters | 2001-11-28 | 15 | -42/+61 |
|
|
* | Use PyOS_snprintf instead of sprintf. | Jeremy Hylton | 2001-11-28 | 1 | -11/+11 |
|
|
* | Checking in Zooko's version per SF patch #476866, plus my changes to | Guido van Rossum | 2001-11-28 | 1 | -395/+429 |
|
|
* | Removed preprocessor gimmick trying to force use of snprintf emulation | Tim Peters | 2001-11-28 | 1 | -8/+6 |
|
|
* | Fix SF bug [ #476852 ] Some bad macros in abstract.h | Jeremy Hylton | 2001-11-28 | 1 | -2/+2 |
|
|
* | Adding test for Unicode repr()-output. | Marc-André Lemburg | 2001-11-28 | 1 | -0/+15 |
|
|
* | 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 | 8 | -22/+17 |
|
|
* | Re-arrange the modules in the "Internet Data Handling" chapter to try to | Fred Drake | 2001-11-28 | 1 | -9/+15 |
|
|
* | Clarify that on some systems, lockf() using LOCK_EX requires that the file | Fred Drake | 2001-11-28 | 1 | -4/+9 |
|
|