diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-15 15:43:44 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-15 17:19:56 -0800 |
commit | 5bf25eb44529cb0546b9b690a142ca7529a062f0 (patch) | |
tree | 13ae675ba4ec81e0eb0b39c71c114124affbfadc /sphinx/pycode/parser.py | |
parent | 6113261948523ef6cad74621dec10e0cbf0189c7 (diff) | |
download | sphinx-git-5bf25eb44529cb0546b9b690a142ca7529a062f0.tar.gz |
Avoid respecifying default encoding for .encode()/.decode() calls
In Python 3, both .encode() and .decode() default the encoding to
'utf-8'. See the docs:
https://docs.python.org/3/library/stdtypes.html#str.encode
https://docs.python.org/3/library/stdtypes.html#bytes.decode
Simplify and shorten the code by using the default instead of
respecifying it.
Diffstat (limited to 'sphinx/pycode/parser.py')
-rw-r--r-- | sphinx/pycode/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/pycode/parser.py b/sphinx/pycode/parser.py index 71d7df781..0d0c3322f 100644 --- a/sphinx/pycode/parser.py +++ b/sphinx/pycode/parser.py @@ -480,7 +480,7 @@ class Parser: def parse_comments(self): # type: () -> None """Parse the code and pick up comments.""" - tree = ast.parse(self.code.encode('utf-8')) + tree = ast.parse(self.code.encode()) picker = VariableCommentPicker(self.code.splitlines(True), self.encoding) picker.visit(tree) self.comments = picker.comments |