Commit b7967ccb authored by Andrew Kuchling's avatar Andrew Kuchling

#21225: copy docstrings from base classes

parent 700c8fe2
......@@ -68,15 +68,16 @@ SEEK_END = 2
# version however.
class IOBase(_io._IOBase):
__metaclass__ = abc.ABCMeta
__doc__ = _io._IOBase.__doc__
class RawIOBase(_io._RawIOBase, IOBase):
pass
__doc__ = _io._RawIOBase.__doc__
class BufferedIOBase(_io._BufferedIOBase, IOBase):
pass
__doc__ = _io._BufferedIOBase.__doc__
class TextIOBase(_io._TextIOBase, IOBase):
pass
__doc__ = _io._TextIOBase.__doc__
RawIOBase.register(FileIO)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment