diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-11 06:46:04 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-11 06:50:20 -0800 |
commit | 8bb73c9fd3555deb83f01e1d18fa10c563202f78 (patch) | |
tree | affde9d2c1580e38138c860cd298b384cfde5b96 /sphinx/testing/path.py | |
parent | 689b9ffd047b12b0fe30e2b25bbc3f50f4756785 (diff) | |
download | sphinx-git-8bb73c9fd3555deb83f01e1d18fa10c563202f78.tar.gz |
Simplify open() call by removing default mode
The open() function opens files in read-only text mode by default. Drop
the mode argument to be slightly simpler and more idiomatic.
https://docs.python.org/3/library/functions.html#open
> The default mode is 'r' (open for reading text, synonym of 'rt').
Diffstat (limited to 'sphinx/testing/path.py')
-rw-r--r-- | sphinx/testing/path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index 34cdee927..574f56c6f 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -163,7 +163,7 @@ class path(text_type): """ Returns the text in the file. """ - with open(self, mode='r', encoding=encoding, **kwargs) as f: # type: ignore + with open(self, encoding=encoding, **kwargs) as f: # type: ignore return f.read() def bytes(self): |