Guido van Rossum
5624abd086
Emptied (in expectation of a laundry list of what's new in 1.5).
1997-07-19 20:45:30 +00:00
Guido van Rossum
ecd3b153d5
Added note about libpython1.5.a.
1997-07-19 20:44:33 +00:00
Guido van Rossum
132cd063f5
Some new names.
1997-07-19 20:44:09 +00:00
Guido van Rossum
68de37973f
Add the option to pass an open file object to GzipFile. This obviates
...
the need for the StringIO subclass.
1997-07-19 20:22:23 +00:00
Guido van Rossum
6576dd6ad6
Document new 'quote' flag to cgi.escape().
1997-07-19 20:16:07 +00:00
Guido van Rossum
64c6620934
Add optional 'quote' flag argument to escape(); if true, translate '"'
...
to '"'.
1997-07-19 20:11:53 +00:00
Guido van Rossum
1e8c8a20f2
New dialog routines (Fred Lundh)
1997-07-19 20:02:36 +00:00
Guido van Rossum
65c78e18b5
Use dictionary's update() method in _cnfmerge().
1997-07-19 20:02:04 +00:00
Guido van Rossum
7a337c1c79
Removed Py_SuppressPrintingFlag flag; added new
...
PyEval_{Acquire,Release}Thread() calls.
1997-07-19 19:59:06 +00:00
Guido van Rossum
496f8f632b
Removed remaining support for Tk versions below 4.0.
1997-07-19 19:57:42 +00:00
Guido van Rossum
9cc8a20cd2
Moved PyEval_{Acquire,Release}Thread() to within the same #ifdef
...
WITH_THREAD as PyEval_InitThreads().
Removed use of Py_SuppressPrintingFlag.
1997-07-19 19:55:50 +00:00
Guido van Rossum
4c125700d1
Adapted to new build procedure (hopefully correct -- can't test it!).
1997-07-19 19:54:25 +00:00
Guido van Rossum
534ac094f9
Removed a bunch of extern declarations of functions that are now
...
properly declared in Python.h.
1997-07-19 19:51:43 +00:00
Guido van Rossum
57d8e3f1c7
Added declarations for Py_{Set,Get}ProgramName() and a bunch of other
...
Py_Get*() functions.
1997-07-19 19:50:52 +00:00
Guido van Rossum
5617f32c5c
Added decl for PyInt_GetMax().
1997-07-19 19:49:11 +00:00
Guido van Rossum
8fb26ede51
Make it return a _const_ char*.
1997-07-19 19:48:41 +00:00
Guido van Rossum
f6ca6aa869
New build procedure.
1997-07-19 19:39:57 +00:00
Guido van Rossum
914fbd9ae6
New build procedure, using a single library libpython$(VERSION) at
...
this level.
The old libraries Modules/libModules.a etc. don't exist any more.
The libainstall target is updated to match.
1997-07-19 19:38:43 +00:00
Guido van Rossum
1fd74a713d
The usual
1997-07-19 19:36:02 +00:00
Guido van Rossum
642b67809e
Set $VERSION here (fixed to 1.5).
...
Remove some unneeded AC_SUBST() calls.
1997-07-19 19:35:41 +00:00
Guido van Rossum
a847889607
Moved PyEval_InitThreads to inside WITH_THREAD, where it belongs.
1997-07-19 19:27:30 +00:00
Guido van Rossum
e6fb2043ce
Got rid of "suppres printing" flag.
1997-07-19 19:26:38 +00:00
Guido van Rossum
4c04be64b3
This is now the "real" main program -- it calls Py_Main(argc, argv)
...
which is in the library and does all the work.
1997-07-19 19:25:33 +00:00
Guido van Rossum
3768fb1097
Tracking changes to Py_Main():
...
- Got rid of inspection of some environment variables.
- Got rid of Py_GetProgramName() and related logic.
- Print the version header *after* successful initialization.
1997-07-19 19:24:41 +00:00
Guido van Rossum
ed52aacb33
This is no longer the real main program; it now defines Py_Main(), so
...
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.
1997-07-19 19:20:32 +00:00
Guido van Rossum
ad6dfda9af
Moved some stuff here from main.c (part of a big restructuring - wait
...
for more!).
- The global flags that can be set from environment variables are now
set in Py_Initialize (except the silly Py_SuppressPrint, which no
longer exists). This saves duplicate code in frozenmain.c and main.c.
- Py_GetProgramName() is now here; added Py_SetProgramName(). An
embedding program should no longer provide Py_GetProgramName(),
instead it should call Py_SetProgramName() *before* calling
Py_Initialize().
1997-07-19 19:17:22 +00:00
Guido van Rossum
0c88e1fd96
Remove confusing usage comments at end.
1997-07-19 00:02:22 +00:00
Guido van Rossum
618af4b3ef
Include pystate.h earlier so it can be referenced by ceval.h.
1997-07-18 23:59:26 +00:00
Guido van Rossum
75aa0d6abe
Use the new functions PyEval_AcquireThread() and
...
PyEval_ReleaseThread() (in ceval.c) to set/reset the current thread,
and at the same time acquire/release the interpreter lock.
Much saner.
1997-07-18 23:57:50 +00:00
Guido van Rossum
2fca21f762
PyEval_SaveThread() and PyEval_RestoreThread() now return/take a
...
PyThreadState pointer instead of a (frame) PyObject pointer. This
makes much more sense. It is backward incompatible, but that's no
problem, because (a) the heaviest users are the Py_{BEGIN,END}_
ALLOW_THREADS macros here, which have been fixed too; (b) there are
very few direct users; (c) those who use it are there will probably
appreciate the change.
Also, added new functions PyEval_AcquireThread() and
PyEval_ReleaseThread() which allows the threads created by the thread
module as well threads created by others (!) to set/reset the current
thread, and at the same time acquire/release the interpreter lock.
Much saner.
1997-07-18 23:56:58 +00:00
Guido van Rossum
c864ad695f
Nit: round delays to 0.1 second.
1997-07-18 23:50:22 +00:00
Guido van Rossum
edca74a627
The usual
1997-07-18 23:29:40 +00:00
Guido van Rossum
b5875b642e
Set OPT to -g -O2 (or -O2 when -g not supported) when using gcc.
1997-07-18 23:29:09 +00:00
Guido van Rossum
61c270345c
added code.py; codehack.py is obsolete
1997-07-18 21:08:07 +00:00
Guido van Rossum
1c78cf3317
Added label{module-spam}
1997-07-18 21:07:34 +00:00
Fred Drake
ca1182b262
Remove pprint from the list of undocumented modules.
1997-07-18 20:44:22 +00:00
Fred Drake
d2b9f81ec5
Add entry for the pprint module.
1997-07-18 20:43:53 +00:00
Fred Drake
18600a4229
Add libpprint.tex to the lib.dvi dependencies.
1997-07-18 20:43:27 +00:00
Fred Drake
e0ffabe375
Slight mods to make the module conform to the documentation.
1997-07-18 20:42:39 +00:00
Fred Drake
ee8d3ca4cf
Documentation for the pprint module.
1997-07-18 20:41:58 +00:00
Guido van Rossum
1557a7314c
Checking in new module code.py -- utilities dealing with code objects.
...
Currently, contains one function: compile_command(), which helps
determining whether a source string is complete, incomplete or in
error. This is useful when writing your own version of the Python
read-eval-print loop.
1997-07-18 16:57:52 +00:00
Guido van Rossum
f357d3ef52
This module is now completely obsolete.
...
Noted this in the XXX comments.
Also, changed all three functions to use the attributes if they exist.
1997-07-18 16:48:30 +00:00
Guido van Rossum
c444865994
No longer need to use codehack -- use co.co_firstlineno instead.
1997-07-18 16:47:40 +00:00
Guido van Rossum
2deb73a961
Use sys.exc_info() instead of sys.exc_{type,value,traceback}.
...
Also corrected a typo in format_stack (t should've been f).
1997-07-18 16:46:36 +00:00
Guido van Rossum
4994657c5f
Some new tests by Jeffrey
1997-07-18 04:26:25 +00:00
Guido van Rossum
71fa97c60d
Jeffrey's latest -- reorder my chages somewhat,
...
removed some of his own cruft. Added \g<...> references in replacement text.
1997-07-18 04:26:03 +00:00
Guido van Rossum
c12da6980f
Huge speedup by inlining some common integer operations:
...
int+int, int-int, int <compareop> int, and list[int].
(Unfortunately, int*int is way too much code to inline.)
Also corrected a NULL that should have been a zero.
1997-07-17 23:12:42 +00:00
Guido van Rossum
77eecfa94d
Patches by AMK to check that the db is still open.
1997-07-17 22:56:01 +00:00
Guido van Rossum
b8ad024a4e
Add 'return' keyword before error calls.
1997-07-17 22:55:06 +00:00
Guido van Rossum
74fb303997
Jeffrey's latests
1997-07-17 22:41:38 +00:00