diff options
author | Martin Panter <vadmium> | 2015-09-11 23:44:18 (GMT) |
---|---|---|
committer | Martin Panter <vadmium> | 2015-09-11 23:44:18 (GMT) |
commit | 3133a9f5ab0eac7e21a13b9fa10356d6c830f83c (patch) | |
tree | 102954842bfe6eaa0cb0d3a41ce3a94eb3ac947a /Doc/library | |
parent | 76950387fea9130f201025e4205a63fc76a8eaaf (diff) | |
download | cpython-3133a9f5ab0eac7e21a13b9fa10356d6c830f83c.zip cpython-3133a9f5ab0eac7e21a13b9fa10356d6c830f83c.tar.gz cpython-3133a9f5ab0eac7e21a13b9fa10356d6c830f83c.tar.bz2 |
socket.sendfile() is a method not a module
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 13f83c6..30f1605 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1102,7 +1102,7 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window .. note:: For a higher-level wrapper of :func:`sendfile`, see - :mod:`socket.socket.sendfile`. + :meth:`socket.socket.sendfile`. .. versionadded:: 3.3 |