[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-07-02 Thread Ned Deily
Ned Deily added the comment: See updated Issue34602 discussion for why reverting 335ab5b66f432ae3713840ed2403a11c368f5406 causes other problems and for a different fix for this issue. -- ___ Python tracker

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-29 Thread Ned Deily
Ned Deily added the comment: Thanks, Inada-san, for the pointer. Closing this as a duplicate of Issue34602 -- resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> python3 resource.setrlimit strange behaviour under macOS

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-16 Thread Berker Peksag
Berker Peksag added the comment: I can also confirm that reverting 335ab5b66f432ae3713840ed2403a11c368f5406 fixes the problem. -- nosy: +berker.peksag type: -> behavior ___ Python tracker

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-11 Thread Dmitrii Pasechnik
Change by Dmitrii Pasechnik : -- nosy: +dimpase ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-01 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: I confirm that reverting 335ab5b66f432ae3713840ed2403a11c368f5406 work as a workaround, and does not seem to create regressions. -- ___ Python tracker

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-01 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- nosy: +remi.lapeyre ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-30 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: +yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-27 Thread Inada Naoki
Inada Naoki added the comment: I think this issue is duplicate of https://bugs.python.org/issue34602 -- ___ Python tracker ___ ___

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-26 Thread Inada Naoki
Inada Naoki added the comment: I created simple program calling setrlimit and it succeeds. I confirmed setrlimit argument is exactly same. It's very curious why same Python code fails... == c code #include #include int main(int argc, char *argv[]) { struct rlimit rl; int err;

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-26 Thread Kumar Akshay
Kumar Akshay added the comment: I'm on macOS 10.14.3 and running those commands gives me this -> ~ ulimit -Sa -t: cpu time (seconds) unlimited -f: file size (blocks) unlimited -d: data seg size (kbytes) unlimited -s: stack size (kbytes) 8192 -c:

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-26 Thread Inada Naoki
Inada Naoki added the comment: My mac is also 10.14.4. I don't have older macOS now. Could someone test this? $ ulimit -Sa core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max locked memory (kbytes,

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-26 Thread Ned Deily
New submission from Ned Deily : After upgrading my first macOS system to the newly released macOS 10.14.4 update, attempts to run the Python test suite via regrtest fail: $ /usr/local/bin/python3.7 -m test -uall -j3 -w Traceback (most recent call last): File