summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-05 15:11:34 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-05 15:11:34 +0100
commit9c45fbe788f086db9d73c7a8d4aafcb7fc1ef85e (patch)
treebc86e7e6dbea9379a69af60f90c31b594063bdce /Python/pythonrun.c
parent2dfa193e4a0e1a5910d6d822004adcee30c77931 (diff)
downloadcpython-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.c1
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__