diff options
author | Guido van Rossum <guido@python.org> | 1993-10-18 11:44:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-10-18 11:44:47 (GMT) |
commit | cacd9579d48cb1e2acc3536c9701987b118edf8c (patch) | |
tree | a3d31a150228428d44866f8a5e6fe496c5c9dbff /Modules/config.c.in | |
parent | 842d2ccdcd540399501a918b9724d2eaf5599f39 (diff) | |
download | cpython-cacd9579d48cb1e2acc3536c9701987b118edf8c.zip cpython-cacd9579d48cb1e2acc3536c9701987b118edf8c.tar.gz cpython-cacd9579d48cb1e2acc3536c9701987b118edf8c.tar.bz2 |
* stdwinmodule.c (stdwin_done): interface to shutdown stdwin (now this is
no longer done by config.c).
* stdwinmodule.c (initstdwin), config.c (initall): get command line
arguments from sys.argv instead of special-casing stdwin in config.c
* import.c (get_module): fix core dump when foomodule.o does not define
initfoo().
* ChangeLog: documented changes by Sjoerd.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index f19655f..fc80362 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -70,14 +70,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define DATE ">= 29 Jul 1993" #endif -#ifdef USE_STDWIN -#ifdef macintosh -#include ":::stdwin:H:stdwin.h" -#else /* !macintosh */ -#include "stdwin.h" -#endif /* !macintosh */ -#endif /* USE_STDWIN */ - char version[80]; char *argv0; /* For dynamic loading in import.c */ @@ -94,12 +86,6 @@ initargs(p_argc, p_argv) argv0 = **p_argv; -#ifdef USE_STDWIN -#ifdef THINK_C_3_0 - wsetstdio(1); -#endif - wargs(p_argc, p_argv); -#endif /* USE_STDWIN */ #ifdef USE_FROZEN if (verbose) #else @@ -120,9 +106,6 @@ initcalls() void donecalls() { -#ifdef USE_STDWIN - wdone(); -#endif #ifdef USE_AUDIO asa_done(); #endif |