(original) (raw)

changeset: 93387:d6fb87972dee user: Victor Stinner victor.stinner@gmail.com date: Wed Nov 05 15:13:51 2014 +0100 files: Python/pythonrun.c description: Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd, MAXPATHLEN is now preferred. diff -r 6aaa0aab1e93 -r d6fb87972dee Python/pythonrun.c --- a/Python/pythonrun.c Wed Nov 05 15:11:34 2014 +0100 +++ b/Python/pythonrun.c Wed Nov 05 15:13:51 2014 +0100 @@ -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); /victor.stinner@gmail.com