diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-06-04 21:56:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-06-04 21:56:05 (GMT) |
commit | 021da55579bde93b6cc159e6aa7080218c00644c (patch) | |
tree | d7377d65e3d2a7939a22e1d702814e2d057e0db7 /Mac/Python | |
parent | 031ac7112f608bd80f4d92d046a0195f0fafb30a (diff) | |
download | cpython-021da55579bde93b6cc159e6aa7080218c00644c.zip cpython-021da55579bde93b6cc159e6aa7080218c00644c.tar.gz cpython-021da55579bde93b6cc159e6aa7080218c00644c.tar.bz2 |
Removed THINK_C support.
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macglue.c | 3 | ||||
-rw-r--r-- | Mac/Python/macmain.c | 11 |
2 files changed, 0 insertions, 14 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index e79a64a..1f5ce0e 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -61,9 +61,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <Fonts.h> #include <Menus.h> #include <TextUtils.h> -#ifdef THINK_C -#include <OSEvents.h> /* For EvQElPtr */ -#endif #ifdef __MWERKS__ #include <SIOUX.h> #endif diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 90d0093..e773fd7 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -50,10 +50,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #endif #include <unistd.h> -#ifdef THINK_C -#include <console.h> -#endif - #define STARTUP "PythonStartup" extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */ @@ -89,9 +85,6 @@ no_appearance: static void init_mac_world() { -#ifdef THINK_C - printf("\n"); -#else #ifndef TARGET_API_MAC_CARBON /* These aren't needed for carbon */ MaxApplZone(); @@ -104,7 +97,6 @@ init_mac_world() #endif InitCursor(); init_appearance(); -#endif } /* @@ -541,9 +533,6 @@ PyMac_Exit(status) else SIOUXSettings.autocloseonquit = 1; #endif /* USE_SIOUX */ -#ifdef THINK_C - console_options.pause_atexit = keep; -#endif exit(status); } |