- 17 Feb, 1997 3 commits
-
-
Guido van Rossum authored
- add awarning about reconfiguring after Slackware96 fix - add reference to Jim F's ExtensionClass module
-
Jack Jansen authored
-
Jack Jansen authored
-
- 15 Feb, 1997 1 commit
-
-
Guido van Rossum authored
not exist. All 8 uses of tkinter are replaced with _tkinter. Still create a variable tkinter though, because that is used by other modules importing Tkinter (e.g. tkinter.createfilehandler()). Also added a comment to the 'import _tkinter' line saying that if this fails, Python is not configured correctly.
-
- 14 Feb, 1997 31 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
New symbol WANT_SIGFPE_HANDLER.
-
Guido van Rossum authored
Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.
-
Guido van Rossum authored
New file pyfpe.c and exception FloatingPointError. Surround some f.p. operations with PyFPE macro brackets.
-
Guido van Rossum authored
Surround various f.p. operations with PyFPE_{START,END}_PROTECT macros.
-
Guido van Rossum authored
New file pyfpe.h, new exception FloatingPointError.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
lint happy.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
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.
-
Guido van Rossum authored
Py_FdIsInteractive(). The flag is supposed to be set by the -i command line option. The function is supposed to be called instead of isatty(). This is used for Lee Busby's wish #1, to have an option that pretends stdin is interactive even when it really isn't.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Run the loop up to and including 8k.
-
Guido van Rossum authored
by the frameobject dealloc when it is time for the locals to go. When there's still a traceback object referencing this stack frame, we don't want the local variables to disappear yet. (Hmm... Shouldn't they be copied to the f_locals dictionary?)
-
Guido van Rossum authored
and if there's a pointer to an interned version of the string, use its hash and store its hash in this object, rather than recomputing it.
-
Guido van Rossum authored
from ceval.c). Wrapped a long line.
-
Guido van Rossum authored
Removed select_adjust -- Tk no longer supports this.
-
Guido van Rossum authored
add(): better handling of overflow (substitute maxval instead of throwing away higher order bits). ratecv(): some bugfixes, Sjoerd says.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 12 Feb, 1997 1 commit
-
-
Guido van Rossum authored
by all true Tkinter widgets. (Not that I *like* this module -- it stinks, but until I have something better, I can't nuke it.)
-
- 11 Feb, 1997 1 commit
-
-
Guido van Rossum authored
I'll clean that up later. Also corrected a mistake introduced by the previous reformatting: an 'else' belonging to a 'for' was accidentally reindented to belong to the 'if' inside the 'for'. Note that the module uses inconsistent indentation -- most code is indented with 8 spaces, but some of the reformatted code uses 4 spaces. I'll fix this later in the promised cleanup pass.
-
- 10 Feb, 1997 2 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
Add reference to DLD 3.3 at http://www-swiss.ai.mit.edu/~jaffer/DLD.html.
-
- 03 Feb, 1997 1 commit
-
-
Jack Jansen authored
in a cacheline.
-