Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Put back #! /usr/local/bin/python. For cgi scripts, /usr/bin/env is | Guido van Rossum | 1997-02-18 | 1 | -1/+1 |
| | | | | | unlikely to find a python binary, as /usr/local/bin is usually not on the default search path. | ||||
* | Change the question about os.environ changes not working -- it now | Guido van Rossum | 1997-02-17 | 1 | -19/+10 |
| | | | | works unless you don't have putenv. | ||||
* | Two changes: | Guido van Rossum | 1997-02-17 | 1 | -0/+10 |
| | | | | | - add awarning about reconfiguring after Slackware96 fix - add reference to Jim F's ExtensionClass module | ||||
* | An initial stab at calling random C routines from Python | Jack Jansen | 1997-02-17 | 1 | -0/+903 |
| | |||||
* | Initial stab at calling C routines from python dynamically | Jack Jansen | 1997-02-17 | 2 | -0/+214 |
| | |||||
* | Require _tkinter -- don't attempt to import tkinter when _tkinter does | Guido van Rossum | 1997-02-15 | 2 | -50/+20 |
| | | | | | | | | | 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. | ||||
* | Add fpectl and fpetest modules. | Guido van Rossum | 1997-02-14 | 1 | -0/+7 |
| | |||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 2 | -0/+6 |
| | | | | New symbol WANT_SIGFPE_HANDLER. | ||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 8 | -1/+492 |
| | | | | | Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros. | ||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 5 | -4/+38 |
| | | | | | New file pyfpe.c and exception FloatingPointError. Surround some f.p. operations with PyFPE macro brackets. | ||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 3 | -10/+63 |
| | | | | Surround various f.p. operations with PyFPE_{START,END}_PROTECT macros. | ||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 4 | -0/+168 |
| | | | | New file pyfpe.h, new exception FloatingPointError. | ||||
* | Fix the comments for bitwise and/or. | Guido van Rossum | 1997-02-14 | 1 | -6/+6 |
| | |||||
* | Keep gcc -Wall happy. | Guido van Rossum | 1997-02-14 | 2 | -3/+3 |
| | |||||
* | Added decl for Py_AddPendingCall and include mymalloc.h, all to keep | Guido van Rossum | 1997-02-14 | 1 | -0/+4 |
| | | | | lint happy. | ||||
* | Add parentheses around && within || as gcc -Wall advises. | Guido van Rossum | 1997-02-14 | 1 | -1/+1 |
| | |||||
* | Oops, remove an unused variable from PyErr_Format(). | Guido van Rossum | 1997-02-14 | 1 | -1/+0 |
| | |||||
* | Added decl for Py_FdIsInteractive. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
| | |||||
* | Added decl for Py_InteractiveFlag. | Guido van Rossum | 1997-02-14 | 1 | -0/+1 |
| | |||||
* | My version of Lee Busby's patches to make '-i' pretend stdin is a tty | Guido van Rossum | 1997-02-14 | 1 | -22/+35 |
| | | | | | | | | | | | | | | | 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. | ||||
* | Added new global flag variable Py_InteractiveFlag and new function | Guido van Rossum | 1997-02-14 | 1 | -1/+22 |
| | | | | | | | 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. | ||||
* | Added PyArg_ParseTupleAndKeywords, PyErr_Format. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
| | |||||
* | Added prototype for PyErr_Format(exception, formatstring, ...) -> NULL. | Guido van Rossum | 1997-02-14 | 1 | -0/+1 |
| | |||||
* | Added convenience function PyErr_Format(exception, formatstring, ...) -> NULL. | Guido van Rossum | 1997-02-14 | 1 | -0/+27 |
| | |||||
* | Added .cxx and .cpp to extensions recognized as source files. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
| | |||||
* | Added PyArg_ParseTupleAndKeywords() prototype. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
| | |||||
* | djgpp support. | Guido van Rossum | 1997-02-14 | 1 | -1/+1 |
| | |||||
* | djgpp fix (SIGMAX). | Guido van Rossum | 1997-02-14 | 1 | -0/+4 |
| | |||||
* | Issue a more meaningful error if strftime keeps returning a NULL pointer. | Guido van Rossum | 1997-02-14 | 1 | -2/+5 |
| | | | | Run the loop up to and including 8k. | ||||
* | *Don't* kill all local variables on function exit. This will be done | Guido van Rossum | 1997-02-14 | 1 | -12/+0 |
| | | | | | | | | 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?) | ||||
* | Slight tweak: in string_hash(), if the hash hasn't been computed yet, | Guido van Rossum | 1997-02-14 | 1 | -0/+5 |
| | | | | | 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. | ||||
* | Kill all local variables when the frame is deallocated (moved here | Guido van Rossum | 1997-02-14 | 1 | -1/+11 |
| | | | | | | from ceval.c). Wrapped a long line. | ||||
* | Gave the Listbox selection methods their correct (longer) names. | Guido van Rossum | 1997-02-14 | 2 | -4/+8 |
| | | | | Removed select_adjust -- Tk no longer supports this. | ||||
* | Changes by Sjoerd (reformatted). | Guido van Rossum | 1997-02-14 | 1 | -95/+106 |
| | | | | | | | add(): better handling of overflow (substitute maxval instead of throwing away higher order bits). ratecv(): some bugfixes, Sjoerd says. | ||||
* | Added doco for ratecv. | Guido van Rossum | 1997-02-14 | 2 | -0/+22 |
| | |||||
* | Added test for ratecv (from Sjoerd, reformatted). | Guido van Rossum | 1997-02-14 | 1 | -0/+9 |
| | |||||
* | Added intern() function. | Guido van Rossum | 1997-02-14 | 1 | -0/+14 |
| | |||||
* | Put support for a cnf dictionary back in, since it is still supported | Guido van Rossum | 1997-02-12 | 2 | -2/+6 |
| | | | | | by all true Tkinter widgets. (Not that I *like* this module -- it stinks, but until I have something better, I can't nuke it.) | ||||
* | Merged in Jack's fixes. This brings some lines beyond 79 chars again; | Guido van Rossum | 1997-02-11 | 1 | -17/+32 |
| | | | | | | | | | 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. | ||||
* | Put a new, more useful, set of references in the leading comment. | Guido van Rossum | 1997-02-10 | 1 | -6/+13 |
| | |||||
* | Correct typo in PyArg_ParseTuple example. | Guido van Rossum | 1997-02-10 | 2 | -10/+18 |
| | | | | Add reference to DLD 3.3 at http://www-swiss.ai.mit.edu/~jaffer/DLD.html. | ||||
* | The USE_CACHE_ALIGNING define now has a value: the number of *words* | Jack Jansen | 1997-02-03 | 1 | -4/+11 |
| | | | | in a cacheline. | ||||
* | Restructured Checker class to get rid of 'ext' table. | Guido van Rossum | 1997-02-02 | 2 | -177/+165 |
| | | | | | | | | | | | | | | | | | | | Links are now either in 'todo' or 'done', and ext links are hadled more like local links except that no further links are gathered (and sometimes they aren't checked, e.g. for mailto and news URLs). The -x option reverses its meaning: it disables checking of ext links (they are moved to 'done' without checking). A new 'errors' table collects pages with bad links as we go -- redundant, but useful for the GUI version which needs to report this as we go. Some new methods, including reset(). New checkpoint format. Adapted the GUI to the changes in the Checker class. Added Quit and "Start over" buttons, and a checkbox to disable checking external links. The details window now also shows bad links emanating from the selected page. Miscellaneous small chages. | ||||
* | Optionally (on USE_CACHE_ALIGN) extend overhead structure to align | Jack Jansen | 1997-02-01 | 1 | -0/+7 |
| | | | | returned addresses on 16-byte cacheline boundary. | ||||
* | Add root URL entry box, separate start/stop/step buttons. | Guido van Rossum | 1997-02-01 | 1 | -54/+131 |
| | | | | If the users selects an item in 'To check', start checking there. | ||||
* | Process <img> and <frame> tags. Don't bother skipping second href. | Guido van Rossum | 1997-02-01 | 1 | -3/+12 |
| | |||||
* | Check in another copy of tktools.py... | Guido van Rossum | 1997-01-31 | 1 | -0/+367 |
| | |||||
* | Tk interface to webchecker. Not fully featured yet, but usable. | Guido van Rossum | 1997-01-31 | 1 | -0/+329 |
| | |||||
* | Spin off checking of external page in a subroutine. | Guido van Rossum | 1997-01-31 | 1 | -17/+20 |
| | | | | | Increase MAXPAGE to 150K. Add back printing of __doc__ for usage message. | ||||
* | Added/updated copyright notices | Jack Jansen | 1997-01-31 | 39 | -4651/+5572 |
| | | | | (and the &*^$%@ resource files got binhexed again, sigh) |