Browse Source
bpo-41497: Fix potential UnicodeDecodeError in dis CLI (GH-21757)
pull/21792/head
Konge
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
Lib/dis.py
-
Misc/NEWS.d/next/Library/2020-08-07-06-06-29.bpo-41497.aBtsWz.rst
|
|
|
@ -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. |