- 24 Şub, 1999 13 kayıt (commit)
-
-
Fred Drake yazdı
section.
-
Fred Drake yazdı
as such.
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
urlopen is used to specify form data, make sure the second argument is threaded through all of the http_error_NNN calls. This allows error handlers like the redirect and authorization handlers to properly re-start the connection.
-
Fred Drake yazdı
-
Fred Drake yazdı
built with target "all".
-
Fred Drake yazdı
like modindex.html, create a combined modindex.html file that lists all the modules. Takes the same parameters as buildindex.py.
-
Fred Drake yazdı
-
Fred Drake yazdı
main(): Moved the node processing between input and ouptut to process_nodes().
-
Guido van Rossum yazdı
o the initial comment is wrong: creating messages is already implemented o Message.getbodytext: if the mail or it's part contains an empty content-transfer-encoding header, the code used to break; the change below treats an empty encoding value the same as the other types that do not need decoding o SubMessage.getbodytext was missing the decode argument; the change below adds it; I also made it unconditionally return the raw text if decoding was not desired, because my own routines needed that (and it was easier than rewriting my own routines ;-)
-
Barry Warsaw yazdı
string-based exceptions are used) reflect the real class hierarchy, i.e. that SystemExit derives from Exception not StandardError.
-
Barry Warsaw yazdı
error and so it derives from Exception and not SystemError. The docstring was incorrect but the implementation was fine.
-
Barry Warsaw yazdı
error and so it derives from Exception and not SystemError.
-
- 23 Şub, 1999 15 kayıt (commit)
-
-
Guido van Rossum yazdı
Discovered by Mitch Chapman.
-
Fred Drake yazdı
usage information.
-
Fred Drake yazdı
notation. Problem reported by Magnus L. Hetland <mlh@idt.ntnu.no>.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
disappears. It wasn't used anywhere anyway...
-
Guido van Rossum yazdı
-- someone tried to pass in sys.maxint and got bitten by the bogus calculations.
-
Guido van Rossum yazdı
LIBM (from --with-libm=...); this actually broke the customizability offered by the latter option. Thanks go to Clay Spence for reporting this.
-
Guido van Rossum yazdı
2. When no test case worked, raise ImportError instead of failing.
-
Guido van Rossum yazdı
value (because of immutable containers containing mutable objects). 2. Document that func_code, func_defaults and func_doc / __doc__ are now writable.
-
Guido van Rossum yazdı
xrange(), especially for platforms where int and long are different sizes (so sys.maxint isn't actually the theoretical limit for the length of a list, but the largest C int is -- sys.maxint is the largest Python int, which is actually a C long).
-
Guido van Rossum yazdı
2. Add $(EXE) to various occurrences of python so it will work on Cygwin with egcs (after setting EXE=.exe). These patches by Norman Vine.
-
Guido van Rossum yazdı
list (of bsd variants that have a different lock structure).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
guessing what happened when strftime() returns 0. Is it buffer overflow or was the result simply 0 bytes long? (This happens for an empty format string, or when the format string is a single %Z and the timezone is unknown.) if the buffer is at least 256 times as long as the format, assume the latter.
-
- 22 Şub, 1999 12 kayıt (commit)
-
-
Fred Drake yazdı
<Sjoerd.Mullender@cwi.nl>.
-
Guido van Rossum yazdı
calls to addinfourl() in open_file().
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
should be in the range [0-59]. Noted by Tadayoshi Funaba.
-
Guido van Rossum yazdı
converted was a "digit" -- use isalnum(). This test is there only to guard against "+" or "-" being interpreted as a valid int literal. Reported by Takahiro Nakayama.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
so they don't need to be treated specially here.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
actual code does not allow such an argument. (Finn Bock.)
-