diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-12 10:31:54 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-12 10:31:54 +0000 |
commit | 6c7e326eaaa2d814e0d299054f78e5bd187489ab (patch) | |
tree | 5343213d9e164e76a47517111dd41b46f7fd4877 /Mac/Python/macgetpath.c | |
parent | 6bf45c67523a8e81963ce645979ac85f4f75ef33 (diff) | |
download | cpython-git-6c7e326eaaa2d814e0d299054f78e5bd187489ab.tar.gz |
Getting rid of pre-Carbon (MacOS8) support. All code depending on
TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some
TARGET_API_MAC_OSX conditional code is gone, because it is no longer
used on OSX-only Python (only in MacPython-OS9).
Diffstat (limited to 'Mac/Python/macgetpath.c')
-rw-r--r-- | Mac/Python/macgetpath.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Mac/Python/macgetpath.c b/Mac/Python/macgetpath.c index b79d55511f..d98d481206 100644 --- a/Mac/Python/macgetpath.c +++ b/Mac/Python/macgetpath.c @@ -38,11 +38,7 @@ PERFORMANCE OF THIS SOFTWARE. #include <unistd.h> #endif -#ifdef TARGET_API_MAC_OSX -#define PATHNAMELEN 1024 -#else #define PATHNAMELEN 256 -#endif /* Return the initial python search path. This is called once from ** initsys() to initialize sys.path. |