[issue41058] pdb reads source files using the locale encoding

2020-06-28 Thread Ned Deily
Change by Ned Deily : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker ___ ___

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread Gregory P. Smith
Gregory P. Smith added the comment: The 3.7 PR is up to the release manager to decide on, it probably isn't worth merging there as this i not security related. thanks for the fix Serhiy! -- nosy: +gregory.p.smith ___ Python tracker

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread miss-islington
miss-islington added the comment: New changeset 26f6126b2aa116b5c613c104bde0bb5b791a0bfc by Miss Islington (bot) in branch '3.9': bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010) https://github.com/python/cpython/commit/26f6126b2aa116b5c613c104bde0bb5b791a0bfc

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread miss-islington
miss-islington added the comment: New changeset 14195597b3a877209c20d00e0ec844234e624d13 by Miss Islington (bot) in branch '3.8': bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010) https://github.com/python/cpython/commit/14195597b3a877209c20d00e0ec844234e624d13

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +20205 pull_request: https://github.com/python/cpython/pull/21034 ___ Python tracker ___ __

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +20199 pull_request: https://github.com/python/cpython/pull/21027 ___ Python tracker ___ __

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +20198 pull_request: https://github.com/python/cpython/pull/21026 ___ Python tracker _

[issue41058] pdb reads source files using the locale encoding

2020-06-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 19fcffa92773e008e4f5efb80047420a0cfafeec by Serhiy Storchaka in branch 'master': bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010) https://github.com/python/cpython/commit/19fcffa92773e008e4f5efb80047420a0cfafeec ---

[issue41058] pdb reads source files using the locale encoding

2020-06-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +20184 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21010 ___ Python tracker ___

[issue41058] pdb reads source files using the locale encoding

2020-06-20 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : find_function() in pdb uses the locale encoding for reading source files. It should use the encoding specified by the coding cookie or UTF-8 if it is not specified. -- components: Library (Lib) messages: 371950 nosy: serhiy.storchaka priority: no