[issue39206] Modulefinder does not consider source file encoding

2020-01-14 Thread Luciana
Luciana added the comment: Hi there, can somebody who is a core dev please review my PR? Thanks :) -- ___ Python tracker ___ ___ Py

[issue39206] Modulefinder does not consider source file encoding

2020-01-03 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +17243 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17817 ___ Python tracker ___ __

[issue39206] Modulefinder does not consider source file encoding

2020-01-03 Thread Luciana
Luciana added the comment: I just wanted to comment here that I am looking into this. -- nosy: +lucianamarques ___ Python tracker ___ _

[issue39206] Modulefinder does not consider source file encoding

2020-01-03 Thread Nicholas Feix
New submission from Nicholas Feix : The modulefinder._find_module(...) function returns file objects text mode for source modules using the system encoding. ModuleFinder.load_module(...) can run into decoding issues when the source file encoding does not match the system default. The prior im