add myself
This commit is contained in:
parent
d2e0c7955f
commit
ef9f2bde37
|
@ -8,6 +8,7 @@
|
||||||
.. moduleauthor:: Mark Russell <mark.russell@zen.co.uk>
|
.. moduleauthor:: Mark Russell <mark.russell@zen.co.uk>
|
||||||
.. moduleauthor:: Antoine Pitrou <solipsis@pitrou.net>
|
.. moduleauthor:: Antoine Pitrou <solipsis@pitrou.net>
|
||||||
.. moduleauthor:: Amaury Forgeot d'Arc <amauryfa@gmail.com>
|
.. moduleauthor:: Amaury Forgeot d'Arc <amauryfa@gmail.com>
|
||||||
|
.. moduleauthor:: Benjamin Peterson <benjamin@python.org>
|
||||||
.. sectionauthor:: Benjamin Peterson <benjamin@python.org>
|
.. sectionauthor:: Benjamin Peterson <benjamin@python.org>
|
||||||
|
|
||||||
The :mod:`io` module provides the Python interfaces to stream handling. The
|
The :mod:`io` module provides the Python interfaces to stream handling. The
|
||||||
|
|
|
@ -47,7 +47,8 @@ __author__ = ("Guido van Rossum <guido@python.org>, "
|
||||||
"Mike Verdone <mike.verdone@gmail.com>, "
|
"Mike Verdone <mike.verdone@gmail.com>, "
|
||||||
"Mark Russell <mark.russell@zen.co.uk>, "
|
"Mark Russell <mark.russell@zen.co.uk>, "
|
||||||
"Antoine Pitrou <solipsis@pitrou.net>, "
|
"Antoine Pitrou <solipsis@pitrou.net>, "
|
||||||
"Amaury Forgeot d'Arc <amauryfa@gmail.com>")
|
"Amaury Forgeot d'Arc <amauryfa@gmail.com>, "
|
||||||
|
"Benjamin Peterson <benjamin@python.org>")
|
||||||
|
|
||||||
__all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
|
__all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
|
||||||
"BytesIO", "StringIO", "BufferedIOBase",
|
"BytesIO", "StringIO", "BufferedIOBase",
|
||||||
|
|
Loading…
Reference in New Issue