Guido van Rossum
2a570049ac
Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy.
1998-10-07 22:51:56 +00:00
Guido van Rossum
80c7bcf667
The previous fix was still broken; the Py_END_ALLOW_THREADS macro was
...
never executed because of a return statement. Sigh.
1998-08-29 16:03:27 +00:00
Guido van Rossum
8efa47b63e
We now assume that PyOS_Readline() is called with the interpreter lock
...
held. It releases the lock around the call to the function pointed to by
PyOS_ReadlineFunctionPointer (default PyOS_StdioReadline()).
1998-08-27 19:43:43 +00:00
Guido van Rossum
6e73bf4032
Replace all calls to fprintf(stderr, ...) with PySys_WriteStderr(...).
1998-08-25 18:13:04 +00:00
Guido van Rossum
47fbc4049e
Add a version of PySys_WriteStderr() that writes to stderr, so we can
...
use it in tokenizer.c.
1998-08-25 18:12:36 +00:00
Guido van Rossum
c3e3e6486f
There's a bunch of files that shouldn't be included in libpython*.a!
1998-08-09 03:55:31 +00:00
Guido van Rossum
bb3649e2ba
Make new gcc -Wall happy
1998-04-10 22:09:39 +00:00
Guido van Rossum
6135df6626
Declare and use Py_TabcheckFlag here.
1998-04-10 19:35:06 +00:00
Guido van Rossum
c095200783
Add dummy Py_VerboseFlag now that it's referenced in parsetok.c.
1998-04-10 19:34:15 +00:00
Guido van Rossum
926f13a081
Add checking for inconsistent tab usage
1998-04-09 21:38:06 +00:00
Guido van Rossum
f2da4ed48b
Add $(LIBS) to the pgen link line.
1998-04-09 19:10:38 +00:00
Guido van Rossum
54758fa8ca
Swap two statements in the dedent check loop. This makes absolutely
...
no difference, but avoids triggering an optimizer bug in the AIX
compiler where the loop unrolling does the wrong thing...
1998-02-16 22:18:00 +00:00
Guido van Rossum
35685240a9
Fixed the bug in searching for triple quotes -- change the 'quote2'
...
variable from a pointer to an index, so a realloc() of the buffer
won't disturb it. Problem found by Vladimir Marangozov.
1998-02-16 15:42:50 +00:00
Guido van Rossum
cf57d8b8c9
tok_nextc() should return unsigned characters, to avoid mistaking
...
'\377' for EOF.
1998-01-19 22:07:46 +00:00
Guido van Rossum
7bf22de753
Patch for QNX, by Chris Herborth.
1997-12-02 20:34:19 +00:00
Guido van Rossum
359bcaa539
This fix (across 4 files in 3 directories) solves a subtle problem with
...
signal handlers in a fork()ed child process when Python is compiled with
thread support. The bug was reported by Scott <scott@chronis.icgroup.com>.
What happens is that after a fork(), the variables used by the signal
module to determine whether this is the main thread or not are bogus,
and it decides that no thread is the main thread, so no signals will
be delivered.
The solution is the addition of PyOS_AfterFork(), which fixes the signal
module's variables. A dummy version of the function is present in the
intrcheck.c source file which is linked when the signal module is not
used.
1997-11-14 22:24:28 +00:00
Guido van Rossum
44620646fd
Renamed Py_input_hook to PyOS_InputHook.
...
Also cleaned out some CR's left by the VC++ editor.
1997-08-11 18:57:29 +00:00
Guido van Rossum
717c6f95be
Move GNU readline interface to ../Modules/readline.c.
...
Add Py_input_hook (used by _tkinter and perhaps Gist).
1997-08-05 21:28:12 +00:00
Guido van Rossum
aee094cc60
Added finalization routines.
1997-08-02 03:02:27 +00:00
Guido van Rossum
ff0ec52d3c
Finally plug the memory leak caused by syntax error (including
...
interactive EOF, which leaked *one* byte).
1997-07-27 01:52:50 +00:00
Guido van Rossum
f6ca6aa869
New build procedure.
1997-07-19 19:39:57 +00:00
Guido van Rossum
ee2373b930
Oops, missed some renamings.
1997-05-07 23:51:07 +00:00
Guido van Rossum
86bea46b3d
Another directory quickly renamed.
1997-04-29 21:03:06 +00:00
Guido van Rossum
5026cb4dc6
Now that the string-sig has settled on r"obin" strings, restrict the
...
<letter><string> notation to 'r' and 'R'.
1997-04-25 17:32:00 +00:00
Guido van Rossum
2d45be1366
(Jack:) On the Mac, give syntax error on \r.
1997-04-11 19:16:25 +00:00
Guido van Rossum
fa658ce03d
Remove two unised variables.
1997-04-09 18:19:39 +00:00
Guido van Rossum
24dacb38c5
Support for alternative string quotes (a"xx", b"xx", c"xx", ...).
1997-04-06 03:46:20 +00:00
Guido van Rossum
6dacd90a83
Allow leading underscore in keywords.
1997-04-02 05:23:46 +00:00
Guido van Rossum
fbd64c8790
Restructured quite a bit, hopefully Lee Busby will find this useful.
...
Also grandly renamed.
Here's the new interface:
When WITH_READLINE is defined, two functions are defined:
- PyOS_GnuReadline (what used to be my_readline() with WITH_READLINE)
- PyOS_ReadlineInit (for Dave Ascher)
Always, these functions are defined:
- PyOS_StdioReadline (what used to be my_readline() without WITH_READLINE)
- PyOS_Readline (the interface used by tokenizer.c and [raw_]input().
There's a global function pointer PyOS_ReadlineFunctionPointer,
initialized to NULL. When PyOS_Readline finds this to be NULL, it
sets it to either PyOS_GnuReadline or PyOS_StdioReadline depending on
which one makes more sense (i.e. it uses GNU only if it is defined
*and* stdin is indeed a tty device).
An embedding program that has its own wishes can set the function
pointer to a function of its own design. It should take a char*
prompt argument (which may be NULL) and return a string *ending in a
\n character* -- or "" for EOF or NULL for a user interrupt.
--Guido van Rossum (home page: http://www.python.org/~guido/ )
1997-02-18 21:53:32 +00:00
Guido van Rossum
bae95189b0
Added decl for Py_AddPendingCall and include mymalloc.h, all to keep
...
lint happy.
1997-02-14 21:12:24 +00:00
Guido van Rossum
ad74fa6674
In the Unix version, arrange for sigcheck() to be called via
...
Py_AddPendingCall(). This avoids having to call sigcheck() in the
ticker code in ceval.c's main interpreter loop.
1997-01-21 06:00:33 +00:00
Guido van Rossum
408027ea46
Rename DEBUG macro to Py_DEBUG
1996-12-30 16:17:54 +00:00
Guido van Rossum
fd8a393086
Make gcc -Wall happy
1996-12-02 18:27:33 +00:00
Guido van Rossum
d266eb460e
New permission notice, includes CNRI.
1996-10-25 14:44:06 +00:00
Guido van Rossum
0bc253dba7
Explicitly call rl_initialize().
...
Set rl_readline_name to python.
Move extern decls to more logical point.
1996-09-13 04:09:26 +00:00
Guido van Rossum
7cf1fcf347
Always include config.h
1996-08-19 22:12:39 +00:00
Guido van Rossum
9ea917ebaa
Only define PyOS_ReadlineInit if WITH_READLINE defined.
1996-05-24 20:44:12 +00:00
Guido van Rossum
adf876938a
Separate readline initialization into new function PyOS_ReadlineInit().
...
For Dave Ascher's readline extensions.
1996-04-09 02:45:31 +00:00
Guido van Rossum
faa436c70b
use only j for imaginary constants
1996-01-26 18:59:07 +00:00
Guido van Rossum
f595fde47b
changes for pow(**) and complex
1996-01-12 01:31:58 +00:00
Guido van Rossum
c7fea2feed
add sigrelse() call for SunOS 4.1; add some fflush() calls
1996-01-12 01:30:55 +00:00
Guido van Rossum
3f6bb86593
fix bogus resize length in nextc
1995-09-21 20:36:34 +00:00
Guido van Rossum
94d32b18e0
ignore control-l in whitespace
1995-07-07 22:27:27 +00:00
Guido van Rossum
2e96eb9266
replace "\r\n" with "\n" at line end (Jim Ahlstrom)
1995-06-14 18:26:02 +00:00
Guido van Rossum
575d561c65
added PyErr_SetInterrupt()
1995-03-10 15:13:03 +00:00
Guido van Rossum
d09b41bf05
remove last bits of mac specific code
1995-01-30 12:55:22 +00:00
Jack Jansen
9fc3989c66
Mac interrupt code moved to macglue.c
1995-01-27 14:40:41 +00:00
Jack Jansen
51f4b8dc78
New cmd-. handling for the mac.
1995-01-26 16:20:38 +00:00
Guido van Rossum
ec4982761b
fix strncpy call (uninitialized memory read)
1995-01-20 16:59:12 +00:00
Guido van Rossum
badadd2165
typo
1995-01-20 16:58:43 +00:00