summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-05 15:13:51 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-05 15:13:51 +0100
commita5b335e62fad239f254b6197fa60daba6bd5e464 (patch)
treec239d13b2fc63f165265d84c4600a031de76bf01 /Python/pythonrun.c
parentce43f38ace1122a7561da0a73ceea6743974608d (diff)
downloadcpython-git-a5b335e62fad239f254b6197fa60daba6bd5e464.tar.gz
Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd,
MAXPATHLEN is now preferred.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 33cebc17a0..b5707c4404 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -34,10 +34,6 @@
#include "windows.h"
#endif
-#ifdef __gnu_hurd__
-#define PATH_MAX MAXPATHLEN
-#endif
-
_Py_IDENTIFIER(builtins);
_Py_IDENTIFIER(excepthook);
_Py_IDENTIFIER(flush);