diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 15:13:51 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 15:13:51 +0100 |
commit | 12f13b5d341962bcc1f8e4387662566ddd656eea (patch) | |
tree | 6e3bbb7fe0a3d397bfa72c153d9bcd4d25ad6292 /Python/pythonrun.c | |
parent | 9c45fbe788f086db9d73c7a8d4aafcb7fc1ef85e (diff) | |
download | cpython-12f13b5d341962bcc1f8e4387662566ddd656eea.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.c | 4 |
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); |