bpo-41497: Fix potential UnicodeDecodeError in dis CLI (GH-21757)
This commit is contained in:
parent
705f145565
commit
a4084b9d1e
|
@ -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()
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fix potential UnicodeDecodeError in dis module.
|
Loading…
Reference in New Issue