- 27 Eyl, 2004 9 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Armin Rigo yazdı
-
Armin Rigo yazdı
-
Armin Rigo yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Edward Loper yazdı
-
Edward Loper yazdı
-
Edward Loper yazdı
- Fixed indentation for a verbatim block
-
- 26 Eyl, 2004 13 kayıt (commit)
-
-
Tim Peters yazdı
but not entirely obvious use case.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Raymond Hettinger yazdı
Also, add a testcase. Formerly, the list_extend() code used several local variables to remember its state across iterations. Since an iteration could call arbitrary Python code, it was possible for the list state to be changed. The new code uses dynamic structure references instead of C locals. So, they are always up-to-date. After list_resize() is called, its size has been updated but the new cells are filled with NULLs. These needed to be filled before arbitrary iteration code was called; otherwise, that code could attempt to modify a list that was in a semi-invalid state. The solution was to change the ob->size field back to a value reflecting the actual number of valid cells.
-
Raymond Hettinger yazdı
by factoring out the common prefix (the delimiter).
-
Martin v. Löwis yazdı
Backported to 2.3.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
the process of writing docs for the other "missing" debug support functions.
-
Tim Peters yazdı
on option flags; added a versionadded decoration.
-
Tim Peters yazdı
-
Tim Peters yazdı
"soon", after I repair the LaTeX I somehow damaged.
-
Tim Peters yazdı
unittest support function, from the public interface. If they're not documented, they shouldn't be public.
-
- 25 Eyl, 2004 13 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
example. Squash repeated argument descriptions. Minor rewordings.
-
Tim Peters yazdı
and the LaTeX docs are in increasingly good shape.
-
Tim Peters yazdı
squashed massive duplication of common argument descriptions.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Tim Peters yazdı
get rid of the itemize structure.
-
Tim Peters yazdı
ELLIPSIS can be used to deal with examples that embed object addresses.
-
Johannes Gijsbers yazdı
part of my previous last changes.
-
Tim Peters yazdı
reStructuredText format. Remove words describing the return value of testmod() and testfile() in the intro sections, since it's never useful in such simple cases.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
- 24 Eyl, 2004 5 kayıt (commit)
-
-
Johannes Gijsbers yazdı
- Add more ulink's to modules (this should probably become a standard macro).
-
Tim Peters yazdı
-
Johannes Gijsbers yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
buffers, compute the new buffer size based on the old buffer size. Fixes SF bug #1034242.
-