diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:13:51 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:13:51 (GMT) |
commit | a5b335e62fad239f254b6197fa60daba6bd5e464 (patch) | |
tree | c239d13b2fc63f165265d84c4600a031de76bf01 /Python | |
parent | ce43f38ace1122a7561da0a73ceea6743974608d (diff) | |
download | cpython-a5b335e62fad239f254b6197fa60daba6bd5e464.zip cpython-a5b335e62fad239f254b6197fa60daba6bd5e464.tar.gz cpython-a5b335e62fad239f254b6197fa60daba6bd5e464.tar.bz2 |
Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd,
MAXPATHLEN is now preferred.
Diffstat (limited to 'Python')
-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 33cebc1..b5707c4 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); |