[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-12 Thread miss-islington
miss-islington added the comment: New changeset 0a8e7fde064c8fb6eb8e78752d4bcdab56643065 by Miss Islington (bot) in branch '3.8': bpo-38723: Pdb._runscript should use io.open_code() instead of open() (GH-17127) https://github.com/python/cpython/commit/0a8e7fde064c8fb6eb8e78752d4bcdab56643065

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-12 Thread Steve Dower
Steve Dower added the comment: Thanks for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +16645 pull_request: https://github.com/python/cpython/pull/17135 ___ Python tracker ___ __

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-12 Thread Steve Dower
Steve Dower added the comment: New changeset d593881505c1f4acfd17f41312b27cc898451816 by Steve Dower (jsnklln) in branch 'master': bpo-38723: Pdb._runscript should use io.open_code() instead of open() (GH-17127) https://github.com/python/cpython/commit/d593881505c1f4acfd17f41312b27cc898451816

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-12 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +16635 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17127 ___ Python tracker ___ __

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-08 Thread Jason Killen
Jason Killen added the comment: I flipped through PEP 578 (Runtime Audit Hooks) and this seems like the type of situation that PEP 578 was trying to handle. I've got a change that seems to be working and can provide a PR or whatever once I remember/read up on doing that. (I'm a very seldom

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-06 Thread Dominic Littlewood
New submission from Dominic Littlewood <11dlittlew...@gmail.com>: Fairly obviously, if you're using something called _runscript you're probably trying to run some code. To do this it has to open the script as a file. This is similar to two other issues I'm posting, but they're in different mo

[issue38723] Pdb._runscript should use io.open_code() instead of open()

2019-11-06 Thread Dominic Littlewood
Change by Dominic Littlewood <11dlittlew...@gmail.com>: -- components: +Library (Lib) type: -> security versions: +Python 3.9 ___ Python tracker ___ __