diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 15:11:34 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 15:11:34 +0100 |
commit | 9c45fbe788f086db9d73c7a8d4aafcb7fc1ef85e (patch) | |
tree | bc86e7e6dbea9379a69af60f90c31b594063bdce /Python/pythonrun.c | |
parent | 2dfa193e4a0e1a5910d6d822004adcee30c77931 (diff) | |
download | cpython-9c45fbe788f086db9d73c7a8d4aafcb7fc1ef85e.tar.gz |
Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is
now preferred. Patch written by Jeffrey Armstrong.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index bac39c23b4..33cebc17a0 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -32,7 +32,6 @@ #ifdef MS_WINDOWS #undef BYTE #include "windows.h" -#define PATH_MAX MAXPATHLEN #endif #ifdef __gnu_hurd__ |