diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:11:34 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:11:34 (GMT) |
commit | ce43f38ace1122a7561da0a73ceea6743974608d (patch) | |
tree | 9705c36fa3a8828a42234de9de0ac3ecc52b5825 /Python/pythonrun.c | |
parent | 68b11d129dc28f741e5522fe07b4b935c0d59198 (diff) | |
download | cpython-ce43f38ace1122a7561da0a73ceea6743974608d.zip cpython-ce43f38ace1122a7561da0a73ceea6743974608d.tar.gz cpython-ce43f38ace1122a7561da0a73ceea6743974608d.tar.bz2 |
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 bac39c2..33cebc1 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__ |