[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2016-04-16 Thread Berker Peksag
Berker Peksag added the comment: Python 3.4 is in security-fix-only mode so we can close this now. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-11-05 Thread STINNER Victor
STINNER Victor added the comment: In Python 3.5, PATH_MAX is no more used in Modules/main.c nor Python/pythonrun.c. I removed the "#define PATH_MAX ..." on Hurd. I didn't check Python 3.4. -- nosy: +haypo ___ Python tracker

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-11-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset d6fb87972dee by Victor Stinner in branch 'default': Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd, https://hg.python.org/cpython/rev/d6fb87972dee -- ___ Python tracker

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-11-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: Reopening. What problem does this fix? AFAICT, PATH_MAX isn't used at all (anymore). -- nosy: +loewis resolution: fixed -> status: closed -> open ___ Python tracker

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-04-17 Thread Matthias Klose
Matthias Klose added the comment: fixed -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list ma

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-04-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca2edbefca35 by doko in branch '3.4': Fixes for KFreeBSD and the Hurd: http://hg.python.org/cpython/rev/ca2edbefca35 -- nosy: +python-dev ___ Python tracker __

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-04-17 Thread Thomas Wouters
Thomas Wouters added the comment: You should put the definition closer to the Windows one (right after or before it) rather than further down the file. Other than that, looks good. -- ___ Python tracker __

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-04-17 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +twouters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue21274] define PATH_MAX for GNU/Hurd in Python/pythonrun.c

2014-04-16 Thread Matthias Klose
New submission from Matthias Klose: PATH_MAX is not defined on GNU/Hurd. Take the same approach as taken for Windows in the very same file and define it in terms of MAXPATHLEN. -- components: Interpreter Core files: hurd-path_max.diff keywords: patch messages: 216611 nosy: doko priority