- 29 Jul, 2004 8 commits
-
-
Raymond Hettinger authored
* Use plain wording in docs for id(). * Use normal quotation marks instead of single quotes in the description.
-
Tim Peters authored
mutation during list.sort() used to rely on that listobject.c always NULL'ed ob_item when ob_size fell to 0. That's no longer true, so the test for list mutation during a sort is no longer reliable. Changed the test to rely instead on that listobject.c now never NULLs-out ob_item after (if ever) ob_item gets a non-NULL value. This new assumption is also documented now, as a required invariant in listobject.h. The new assumption allowed some real simplification to some of the hairier code in listsort(), so is a Good Thing on that count.
-
Neal Norwitz authored
Backport candidate.
-
Neal Norwitz authored
-
Tim Peters authored
invariants they must satisfy.
-
Tim Peters authored
-
Tim Peters authored
the size_t nbytes, and passed nbytes to malloc, so it was confusing to effectively recompute the same thing from scratch in the memset call.
-
Skip Montanaro authored
Py_RETURN_FALSE and Py_RETURN_TRUE.
-
- 28 Jul, 2004 10 commits
-
-
Thomas Heller authored
-
Marc-André Lemburg authored
-
Marc-André Lemburg authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
can contain more than just .py files. Make sure we only report bytecode files for the .py files.
-
Skip Montanaro authored
versionadded{} args quite right).
-
Hye-Shik Chang authored
-
Hye-Shik Chang authored
for it soon.
-
Hye-Shik Chang authored
aren't intended to be part of Python distributiuon. This was accidently imported on mass converting from standalone version of CJKCodecs.
-
Neal Norwitz authored
-
- 27 Jul, 2004 8 commits
-
-
Tim Peters authored
-
Tim Peters authored
apply os.fsync() to the GzipFile backup files it creates.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Andrew M. Kuchling authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 26 Jul, 2004 11 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Will backport to 2.3.
-
Tim Peters authored
for people using floor(), ceil() and modf().
-
Tim Peters authored
-
Tim Peters authored
Clarifed that os.environ is captured once; emphasized that it's better to assign to os.environ than to call putenv() directly (the putenv() docs said so, but the environ docs didn't).
-
- 25 Jul, 2004 1 commit
-
-
Martin v. Löwis authored
-
- 24 Jul, 2004 2 commits
-
-
Tim Peters authored
Major rewrite of the math module docs. Slapped in "radians" where appropriate; grouped the functions into reasonable categories; supplied many more words to address common confusions about some of the subtler issues.
-
Skip Montanaro authored
-