- 26 Sep, 2002 1 commit
-
-
Thomas Heller authored
-
- 25 Sep, 2002 13 commits
-
-
Fred Drake authored
PEP 4.
-
Barry Warsaw authored
Move the imports of Parser and Message inside the message_from_string() and message_from_file() functions. This way just "import email" won't suck in most of the submodules of the package. Note: this will break code that relied on "import email" giving you a bunch of the submodules, but that was never documented and should not have been relied on.
-
Fred Drake authored
code to use.
-
Neal Norwitz authored
Quotes aren't necessary in case statements. Spotted by Neil Schemenauer.
-
Neal Norwitz authored
Need to quote $GCC in case it isn't set.
-
Tim Peters authored
A possibility to deadlock (on the hidden import lock) was created here in 2.3, seemingly when tempfile.py started to call functions in random.py. The cure is "the usual": don't spawn threads as a side effect of importing, when the spawned threads themselves do imports (directly or indirectly), and the code that spawned the threads is waiting for the threads to finish (they can't finish, because they're waiting for the import lock the spawner still holds). Worming around this is why the "test_main" mechanism was introduced in regrest, so it's a straightforward fix. NOT a bugfix candidate; the problem was introduced in 2.3.
-
Neal Norwitz authored
Add a test too. urljoin() would make file:/tmp/foo instead of file:///tmp/foo Bugfix candidate, I will backport.
-
Fred Drake authored
-
Guido van Rossum authored
2.2.2.
-
Fred Drake authored
module used in the Zope TAL implementation. The bug was already fixed in the Python standard library, but the regression test would be good to keep around.
-
Guido van Rossum authored
except in the hands of experts. Will backport to 2.2.2.
-
Guido van Rossum authored
except in the hands of experts. Will backport to 2.2.2.
-
Fred Drake authored
-
- 24 Sep, 2002 10 commits
-
-
Fred Drake authored
Document the indices() method of slice objects.
-
Fred Drake authored
-
Thomas Heller authored
Patch suggested by Guido, fixes SF item 611464. Bugfix candidate, will backport to release22-maint myself.
-
Thomas Heller authored
-
Thomas Heller authored
Bugfix candidate, will backport to release22-maint myself.
-
Fred Drake authored
count behavior.
-
Fred Drake authored
XML_Parser, which happens to be a pointer type, not an XML_Parser*. This generated warnings when compiled with Expat 1.95.5, which no longer defines XML_Parser to be void*.
-
Fred Drake authored
-
Fred Drake authored
not abstract characters.
-
Marc-André Lemburg authored
-
- 23 Sep, 2002 10 commits
-
-
Barry Warsaw authored
593560, with some minor cleanups, line folding and whitespace normalization by Barry.
-
Greg Ward authored
quoted (or mangled) *at* delivery-time, not "well before" it. (At least that's how Exim and qmail work.)
-
Guido van Rossum authored
-
Guido van Rossum authored
This adds new methods heading(), setheading(), position(), window_width(), window_height(), setx(), and sety(), to make this more functionality-compatible with Logo turtle graphics (Attila's last words, not mine :-). I had to fix the sety() code which was broken in Attila's patch. I'm not adopting the functionality change that Attila claimed was a bugfix (no output without tracing), because I disagree that it's a bug.
-
Guido van Rossum authored
-
Kurt B. Kaiser authored
Also, decided IDENTCHARS is better as global, after all.
-
Tony Lownds authored
-
Tony Lownds authored
-
Tony Lownds authored
-
Tony Lownds authored
-
- 22 Sep, 2002 2 commits
-
-
Martin v. Löwis authored
Fixes #612595. Will backport to 2.2.
-
Martin v. Löwis authored
-
- 20 Sep, 2002 3 commits
-
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Skip Montanaro authored
fairly large, most are caused by reformatting section and subsection headings. The changes fall into the following categories: * reformatted section and subsection headers. * escaped isolated asterisks which would be interpreted as starting bold or italic text (e.g. "void (*)(PyObject \*)"). * quoted stuff that looks like internal references but isn't (e.g. ``PyCmp_``). * changed visually balanced quotes to just use apostrophes (e.g. "'string'" instead of "`string'"). * introduced and indenting multiline chunks of code. * created one table (search for "New codecs").
-
- 19 Sep, 2002 1 commit
-
-
Jeremy Hylton authored
-