mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-38723: Pdb._runscript should use io.open_code() instead of open() (GH-17127)
Co-Authored-By: Brandt Bucher <brandtbucher@gmail.com>
This commit is contained in:
parent
138ccbb022
commit
d593881505
2 changed files with 3 additions and 1 deletions
|
@ -68,6 +68,7 @@ Debugger commands
|
|||
# commands and is appended to __doc__ after the class has been defined.
|
||||
|
||||
import os
|
||||
import io
|
||||
import re
|
||||
import sys
|
||||
import cmd
|
||||
|
@ -1565,7 +1566,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
|||
self._wait_for_mainpyfile = True
|
||||
self.mainpyfile = self.canonic(filename)
|
||||
self._user_requested_quit = False
|
||||
with open(filename, "rb") as fp:
|
||||
with io.open_code(filename) as fp:
|
||||
statement = "exec(compile(%r, %r, 'exec'))" % \
|
||||
(fp.read(), self.mainpyfile)
|
||||
self.run(statement)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue