mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-41497: Fix potential UnicodeDecodeError in dis CLI (GH-21757)
(cherry picked from commit a4084b9d1e
)
Co-authored-by: Konge <zkonge@outlook.com>
This commit is contained in:
parent
deea701b7f
commit
d9106434f7
2 changed files with 2 additions and 1 deletions
|
@ -542,7 +542,7 @@ def _test():
|
|||
import argparse
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('infile', type=argparse.FileType(), nargs='?', default='-')
|
||||
parser.add_argument('infile', type=argparse.FileType('rb'), nargs='?', default='-')
|
||||
args = parser.parse_args()
|
||||
with args.infile as infile:
|
||||
source = infile.read()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue