- 06 Şub, 1998 13 kayıt (commit)
-
-
Guido van Rossum yazdı
in sys.last_*; it prevents proper calling of destructors of local variables.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
- Don't print error messages when Py_FrozenFlag is set.
-
Guido van Rossum yazdı
embedders to force a different PYTHONHOME. - Add new interface PyErr_PrintEx(flag); same as PyErr_Print() but flag determines whether sys.last_* are set or not. PyErr_Print() now simply calls PyErr_PrintEx(1).
-
Guido van Rossum yazdı
getpath.c in frozen binaries.
-
Guido van Rossum yazdı
- Add Py_FrozenFlag, intended to suppress error messages fron getpath.c in frozen binaries. - Add Py_GetPythonHome() and Py_SetPythonHome(), intended to allow embedders to force a different PYTHONHOME. - Add new interface PyErr_PrintEx(flag); same as PyErr_Print() but flag determines whether sys.last_* are set or not. PyErr_Print() now simply calls PyErr_PrintEx(1).
-
Fred Drake yazdı
-
Fred Drake yazdı
of "variable": each individual variable should be identified as a single variable and not a collection in the index.
-
Guido van Rossum yazdı
Code by David Ascher (docstring by me).
-
Guido van Rossum yazdı
(1) Explicitly clear __builtin__._ and sys.{last,exc}_* before clearing anything else. These are common places where user values hide and people complain when their destructors fail. Since the modules containing them are deleted *last* of all, they would come too late in the normal destruction order. Sigh. (2) Add some debugging aid to cleanup (after a suggestion by Marc Lemburg) -- print the names of the modules being cleaned, and (when -vv is used) print the names of the variables being cleared.
-
Barry Warsaw yazdı
like default shell-mode behavior.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 05 Şub, 1998 6 kayıt (commit)
-
-
Barry Warsaw yazdı
string, don't check for indentation at column zero. This will falsely hit a line inside a docstring that starts at column zero but ends in a colon.
-
Barry Warsaw yazdı
arguments past to py-python-command when invoking the Python shell.
-
Guido van Rossum yazdı
defs) need to be declared extern "C" -- it seems to have no basis in truth (any more?).
-
Guido van Rossum yazdı
- use the tempcache in the open() method, too. - use the "unwrap"ped url as key for the tempcache.
-
Guido van Rossum yazdı
(2) Provisional hack to avoid dying when trying to turn echo on or off on Macs, where os.system() doesn't exist.
-
Guido van Rossum yazdı
moved DLLs into their own directory (and added it to default path); install zlib.dll in SYS32; fixed location of help root.
-
- 04 Şub, 1998 5 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
use with function name provided as well. Wrapped up PyArg_ParseTupleAndKeywords() description and provided example based on Geoff Philbrick's example to the mailing list.
-
Fred Drake yazdı
requires "distill" from a FrameMaker installation. ;-) Would probably need to be different for Windows/Mac.
-
Fred Drake yazdı
"standard". This is mostly for documentation of modules outside the standard library.
-
- 03 Şub, 1998 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 02 Şub, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Remove references to regsub, which is obsolescent.
-
- 31 Ock, 1998 5 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
rrggbb_to_triplet(): New utility function
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
- 30 Ock, 1998 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 29 Ock, 1998 7 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
from regrtest.py (it still works there too, of course).
-
Guido van Rossum yazdı
Ok, I fixed the quotes, along with a bug or two. Also added another exception.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
The main incompatibility is that the error reporting method is now called as parser.syntax_error(msg) instead of parser.syntax_error(lineno, msg) This new version also has some code to deal with the <?xml?> and <!DOCTYPE> tags at the start of an XML document. The documentation has been updated, and a small test module has been created.
-
Guido van Rossum yazdı
-