- 15 Eyl, 2000 1 kayıt (commit)
-
-
Barry Warsaw yazdı
message and Python version number and exit immediately. Closes patch #101496.
-
- 05 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
"Type \"copyright\", \"credits\" or \"license\" for more information."
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
- 27 Agu, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PyRun_FileEx(). These are the same as their non-Ex counterparts but have an extra argument, a flag telling them to close the file when done. Then this is used by Py_Main() and execfile() to close the file after it is parsed but before it is executed. Adding APIs seems strange given the feature freeze but it's the only way I see to close the bug report without incompatible changes. [ Bug #110616 ] source file stays open after parsing is done (PR#209)
-
- 09 Tem, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
(the PYTHONHOMEHELP define) - ANSI-fication (patch #100794 by Peter Schneider-Kamp)
-
- 30 Haz, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 02 May, 2000 1 kayıt (commit)
-
-
Barry Warsaw yazdı
Py_Main(): Remove the 'X' case.
-
- 01 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Added -U command line option. With the option enabled the Python compiler interprets all "..." strings as u"..." (same with r"..." and ur"...").
-
- 19 Nis, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
by a line when Python is run with -x.
-
- 09 Şub, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
up the _tkinter main loop. Not clear why; the _kbhit() call _tkinter makes probably confuses the stdio library when buffering isn't set to whatever it is by default.
-
- 28 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Marc-Andre Lemburg.
-
- 07 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 07 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 13 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 06 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 05 Ara, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
- New option -x, to skip first line of script - Use the correct platform-specific delimiter and library location in the usage message (Also removed two blank lines and moved one line around so that each part of the usage message is again under 512 bytes and the whole usage message still fits in 23 lines.)
-
- 31 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
floating point literals. Need to do this differently...
-
- 08 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 16 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
"-i" is given. (Yes, I know, giving in to Marc Lemburg who wanted this :-)
-
- 29 Agu, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
usage message in *three* parts under 510 bytes, for low-end ANSI compatibility.
-
Barry Warsaw yazdı
that class based exceptions are enabled by default. -X disables them in favor of the old-style string exceptions.
-
Barry Warsaw yazdı
-
- 05 Agu, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 02 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Instead of calling Py_Exit(sts), call Py_Cleanup() and return sts.
-
- 19 Tem, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
properly declared in Python.h.
-
Guido van Rossum yazdı
it can be placed in the library. Other, related changes: - Moved the inspection of some environment variables to Py_Initialize(). - Got rid of -s option. - Moved Py_GetProgramName() and related logic to pythonrun.c; call Py_SetProgramName() instead. - Print the version header *after* successful initialization.
-
- 19 May, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 30 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 11 Nis, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
buffering, so to get the normal behavior back, I set it to unbuffered.
-
Guido van Rossum yazdı
This used to be done whenever stdin was interactive. Now we only do it when the -i flag is given. Also (and this is the real reason for this fix) we explicitly allocate a buffer -- this seems to be necessary on Windows.
-
- 03 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Fred: sorry, I hadn't checked these changes in. This should fix your tracebacks!
-
- 14 Şub, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
even if it isn't. Changes: - set the global flag Py_InteractiveFlag when -i is given - call Py_FdIsInteractive() instead of isatty() - make stdin unbuffered, too, when using -u - make stdin and stdout line buffered, when stdin is interactive and not -u Note that setting the environment variable PYTHONINSPECT does not have these extra effects of -i. (Should it?) Unlike Lee's changes, I don't set change the prompt to go to stderr when -i is given.
-
- 17 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
fileno(std*).
-
- 11 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(as well as unbuffered stdout/stderr).
-
- 09 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 05 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-