[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2021-05-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +24965 pull_request: https://github.com/python/cpython/pull/26373 ___ Python tracker ___

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2021-05-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: -24962 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2021-05-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: -24961 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2021-05-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +24962 pull_request: https://github.com/python/cpython/pull/26373 ___ Python tracker ___

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2021-05-25 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland nosy_count: 4.0 -> 5.0 pull_requests: +24961 pull_request: https://github.com/python/cpython/pull/26372 ___ Python tracker

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2020-12-30 Thread Mark Dickinson
Mark Dickinson added the comment: Your test file has the line: f = open("lol.txt", "r", "utf-8") But the third positional argument to the 'open' built-in function is "buffering", which expects an integer. Pass the "utf-8" argument by name instead: f = open("lol.txt", "r",

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2020-12-30 Thread Jah-On
Change by Jah-On : Added file: https://bugs.python.org/file49710/lol.txt ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42792] [MacOS] Can't open file in a separate (threading.Thread) thread

2020-12-30 Thread Jah-On
New submission from Jah-On : Tested on MacOS Big Sur... Most recent version as of posting. -- components: macOS files: test.py messages: 384088 nosy: Jah-On, ned.deily, ronaldoussoren priority: normal severity: normal status: open title: [MacOS] Can't open file in a separate