summaryrefslogtreecommitdiff
path: root/paramiko/sftp_file.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 11:11:10 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 11:11:10 -0800
commit3f9270c0be18b09cd39279730eac125776adbedc (patch)
treed1f07354948a265339bc9229c0d1bc5f8c2865e2 /paramiko/sftp_file.py
parentf40bf59ff3d18e7a0d8cdf685df09efaeb3b126e (diff)
downloadparamiko-3f9270c0be18b09cd39279730eac125776adbedc.tar.gz
Mass SnR of class refs with dotted ones.
Boo on Sphinx for not letting me just change this behavior by default. There are a handful of incorrect items here that will get tweaked later.
Diffstat (limited to 'paramiko/sftp_file.py')
-rw-r--r--paramiko/sftp_file.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/paramiko/sftp_file.py b/paramiko/sftp_file.py
index f8952889..3ff0d685 100644
--- a/paramiko/sftp_file.py
+++ b/paramiko/sftp_file.py
@@ -17,7 +17,7 @@
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
"""
-:class:`SFTPFile`
+:class:`.SFTPFile`
"""
from __future__ import with_statement
@@ -181,7 +181,7 @@ class SFTPFile (BufferedFile):
def settimeout(self, timeout):
"""
Set a timeout on read/write operations on the underlying socket or
- ssh :class:`Channel`.
+ ssh :class:`.Channel`.
.. seealso:: :class:`Channel.settimeout`
:param timeout: seconds to wait for a pending read/write operation
@@ -193,7 +193,7 @@ class SFTPFile (BufferedFile):
def gettimeout(self):
"""
Returns the timeout in seconds (as a float) associated with the socket
- or ssh :class:`Channel` used for this file.
+ or ssh :class:`.Channel` used for this file.
.. seealso:: :class:`Channel.gettimeout`
:rtype: float
@@ -203,7 +203,7 @@ class SFTPFile (BufferedFile):
def setblocking(self, blocking):
"""
Set blocking or non-blocking mode on the underiying socket or ssh
- :class:`Channel`.
+ :class:`.Channel`.
.. seealso:: :class:`Channel.setblocking`
:param blocking: 0 to set non-blocking mode; non-0 to set blocking