summaryrefslogtreecommitdiff
path: root/Lib/_pyio.py
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-08-29 01:27:42 -0700
committerGitHub <noreply@github.com>2019-08-29 01:27:42 -0700
commit0dac68f1e593c11612ed54af9edb865d398f3b05 (patch)
tree0697b0f9543d4b65feaf75b3335c2fb85481e4d1 /Lib/_pyio.py
parent84125fed2a45a9e454d7e870d8bbaf6ece3d41e8 (diff)
downloadcpython-git-0dac68f1e593c11612ed54af9edb865d398f3b05.tar.gz
bpo-36743: __get__ is sometimes called without the owner argument (#12992)
Diffstat (limited to 'Lib/_pyio.py')
-rw-r--r--Lib/_pyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index 1b24ef9f0e..0d3f974c07 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -283,7 +283,7 @@ except AttributeError:
class DocDescriptor:
"""Helper for builtins.open.__doc__
"""
- def __get__(self, obj, typ):
+ def __get__(self, obj, typ=None):
return (
"open(file, mode='r', buffering=-1, encoding=None, "
"errors=None, newline=None, closefd=True)\n\n" +