diff options
author | Guido van Rossum <guido@python.org> | 1991-06-24 22:30:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-06-24 22:30:42 (GMT) |
commit | d6a15ada727e586dc7b2cce8115e65d0abb0d1aa (patch) | |
tree | 8088233a9c06c665d261f86046d0cf1ac5cea585 /Python | |
parent | 1e2293d1f713b8fd74233aa0f66bf413b7c4ff33 (diff) | |
download | cpython-d6a15ada727e586dc7b2cce8115e65d0abb0d1aa.zip cpython-d6a15ada727e586dc7b2cce8115e65d0abb0d1aa.tar.gz cpython-d6a15ada727e586dc7b2cce8115e65d0abb0d1aa.tar.bz2 |
Generalize to macintosh.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 6 | ||||
-rw-r--r-- | Python/sysmodule.c | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/Python/import.c b/Python/import.c index a4995ea..f62d1d2 100644 --- a/Python/import.c +++ b/Python/import.c @@ -37,13 +37,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "compile.h" #include "ceval.h" -#ifdef THINK_C -#define macintosh -#endif - /* Define pathname separator used in file names */ -#ifdef THINK_C +#ifdef macintosh #define SEP ':' #endif diff --git a/Python/sysmodule.c b/Python/sysmodule.c index e66223e..69489c8 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -45,7 +45,7 @@ Data members: /* Define delimiter used in $PYTHONPATH */ -#ifdef THINK_C +#ifdef macintosh #define DELIM ' ' #endif |