- 28 Eyl, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
1. Generate a correct Content-Length header visible through the info() method if a request to open an FTP URL gets a length in the response to RETR. 2. Take a third argument to urlretrieve() that makes it possible to progress- meter an urlretrieve call (this is what I needed the above change for). See the second patch band below for details. 3. To avoid spurious errors, I commented out the gopher test. The target document no longer exists.
-
Jack Jansen yazdı
not really a good solution for default input strings...
-
- 25 Eyl, 1998 5 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
the de-queing of exec files work for NT XEmacs 21.0.
-
Guido van Rossum yazdı
before code has been checked for validity. Discovered by Vladimir Marangozov.
-
Barry Warsaw yazdı
when in an interactive session (suggested by B. Wiener).
-
- 24 Eyl, 1998 2 kayıt (commit)
-
-
Barry Warsaw yazdı
string in the argument to execfile() so a Windows temp directory named, e.g. c:\\tmp doesn't get interpreted as a file name with an embedded tab! (given by C. Waldman).
-
Guido van Rossum yazdı
-
- 23 Eyl, 1998 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
- 22 Eyl, 1998 3 kayıt (commit)
-
-
Guido van Rossum yazdı
InteractiveInterpreter, which handles parsing and interpreter state but doesn't know deal with buffering or prompting or input file naming. And a derived class, InteractiveConsole, which adds buffering and prompting and supports setting the filename once. Also tweak the algorithm in compile_command() a bit so that input consisting of all blank lines or comments always succeeds immediately, and note the fact that apart from SyntaxError it can also raise OverflowError.
-
Barry Warsaw yazdı
this string should not end with whitespace. (py-compute-indentation): Append whitespace regexp to py-block-comment-prefix so that any combination of intervening whitespace will be recognized.
-
Guido van Rossum yazdı
Windows. If sys.stdin doesn't appear to be a real file (characterized by having a working fileno()), don't use any console specific methods -- go straight to the default.
-
- 21 Eyl, 1998 10 kayıt (commit)
-
-
Guido van Rossum yazdı
-- don't just die.
-
Guido van Rossum yazdı
(Reported by Gary Herron.)
-
Guido van Rossum yazdı
This simplified some other places in the code.
-
Guido van Rossum yazdı
Suggested by Jim Hugunin.
-
Guido van Rossum yazdı
only there to override reload() in a way that doesn't make a whole lot of sense and moreover broke since the latest changes in ihooks.
-
Guido van Rossum yazdı
function is only used when running the calibration code, and it turns out that recent changes in the timing code caused this statement to raise an exception.
-
Guido van Rossum yazdı
triggered in situations that are not an error.
-
Guido van Rossum yazdı
system calls.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 18 Eyl, 1998 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Guido van Rossum yazdı
native format, as void* (translated to Python int or long). Also adds PyLong_FromVoidPtr and PyLong_AsVoidPtr to longobject.c.
-
- 17 Eyl, 1998 8 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Jack Jansen yazdı
manually generated).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
of some paragraphs).
-
Guido van Rossum yazdı
alias delimiter to ';;'.
-
Guido van Rossum yazdı
compiler doesn't grumble. Greg Stein's suggestion.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 15 Eyl, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
there's an __getinitargs__() method), if a TypeError occurs, catch and reraise it but add info to the error about the class name being instantiated. This makes debugging a lot easier if __getinitargs__() returns something bogus (e.g. a string instead of a singleton tuple).
-
- 14 Eyl, 1998 5 kayıt (commit)
-
-
Guido van Rossum yazdı
for callit, used by the after() command. This can happen when the callback deletes the window.
-
Barry Warsaw yazdı
initialization of class exceptions. Specifically: init_class_exc(): This function now returns an integer status of the class exception initialization. No fatal errors in this method now. Also, use PySys_WriteStderr() when writing error messages. When an error occurs in this function, 0 is returned, but the partial creation of the exception classes is not undone (this happens elsewhere). Things that could trigger the fallback: - exceptions.py fails to be imported (due to syntax error, etc.) - one of the exception classes is missing (e.g. due to library version mismatch) - exception class can't be inserted into __builtin__'s dictionary - MemoryError instance can't be pre-allocated - some other PyErr_Occurred newstdexception(): Changed the error message. This is still a fatal error because if the string based exceptions can't be created, we really can't continue. initerrors(): Be sure to xdecref the .exc field, which might be non-NULL if class exceptions init was aborted. _PyBuiltin_Init_2(): If class exception init fails, print a warning message and reinstate the string based exceptions.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
and without a message number argument: the argument was called 'msg' but the code expected it to be called 'which'. In line with the other methods, I've renamed the argument to 'which', and adapted the doc string not to refer to 'msg'.
-