- 01 Ara, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Bugfix candidate. int_repr(): we've never had a buffer big enough to hold the largest possible result on a 64-bit box. Now that we're using snprintf instead of sprintf, this can lead to nonsense results instead of random stack corruption.
-
- 30 Kas, 2001 13 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Use the new seealso* environment in the section pointing out other GUI toolkits.
-
Fred Drake yazdı
to seealso, but does not add the "See also:" header or put the content in a box in the HTML version. Updated the description of \seeurl to better indicate when it should be used; the old description was written before we had \seetitle.
-
Fred Drake yazdı
-
Fred Drake yazdı
more similar.
-
Jack Jansen yazdı
changes from start of branch upto r22b2 were already merged, of course).
-
Tim Peters yazdı
-
Fred Drake yazdı
This closes SF bug #458447.
-
- 29 Kas, 2001 12 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
result object changes.
-
Fred Drake yazdı
-
Fred Drake yazdı
This closes SF bug #487147.
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
with some extensions and changes from me. This closes SF patch #472825.
-
Fred Drake yazdı
function. This closes SF bug #486657.
-
Fred Drake yazdı
This is related to SF bug #485165.
-
Fred Drake yazdı
- Change PREFIX to PREFIXES, which contains a sequence of prefix strings. This is useful since we want to look for both Py and PY. - Wrap a long line. - Collect struct tags as well as typedef names. Since we generally only use one of the other, that improves coverage. - Make the script executable on Unix. This could use a better approach to determine if a symbol is documented, and could easily avoid keeping the massive string in memory. That would take time to actually write more code, though, so we'll bail on that for now.
-
Tim Peters yazdı
vgetargskeywords(): Now that this routine is checking for bad input (rather than dump core in some cases), some bad calls are raising errors that previously "worked". This patch makes the error strings more revealing, and changes the exceptions from SystemError to RuntimeError (under the theory that SystemError is more of a "can't happen!" assert- like thing, and so inappropriate for bad arguments to a public C API function).
-
Guido van Rossum yazdı
fixes the problem reported in SF bug #477023 (Jonathan Mark): "pdb: unexpected path confuses Emacs".
-
- 28 Kas, 2001 14 kayıt (commit)
-
-
Tim Peters yazdı
ZipFile.__del__(): call ZipFile.close(), like its docstring says it does. ZipFile.close(): allow calling more than once (as all file-like objects in Python should support).
-
Tim Peters yazdı
pass the buffer length. Stop using it. It should be deprecated, but too late in the release cycle to do that now. New static format_float() does the same thing but requires passing the buffer length too. Use it instead.
-
Jeremy Hylton yazdı
Also change all the helper functions to pass along the size of the msgbuf and use PyOS_snprintf() when writing into the buffer.
-
Tim Peters yazdı
const char* instead of char*. The change is conceptually correct, and indirectly fixes a compiler wng introduced when somebody else innocently passed a const char* to this function.
-
Tim Peters yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
seterror() uses a char array and a pointer to the current position in that array. Use snprintf() and compute the amount of space left in the buffer based on the current pointer position.
-
Jeremy Hylton yazdı
If it returns -1 (which indicates overflow on old Linux platforms and perhaps on Windows) or size greater than buffer, write a message indicating that the previous message was truncated.
-
Barry Warsaw yazdı
overrun avoidance.
-
Barry Warsaw yazdı
overrun avoidance.
-
Barry Warsaw yazdı
redefinition problem.
-
Jeremy Hylton yazdı
Also reformat calculate_path() using the standard format.
-
Barry Warsaw yazdı
com_arglist(), symtable_check_unoptimized(), symtable_params(), symtable_global(), symtable_list_comprehension(): Conversion of sprintf() to PyOS_snprintf() for buffer overrun avoidance.
-
Barry Warsaw yazdı
buffer overrun avoidance.
-