~pythonregexp2.7/python/issue2636-01

« back to all changes in this revision

Viewing changes to Doc/library/ftplib.rst

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:37:21 UTC
  • mfrom: (39022.1.14 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609143721-bj0g1mwta28038da
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
   the method call ``login(user, passwd, acct)`` is made (where *passwd* and
45
45
   *acct* default to the empty string when not given).  The optional *timeout*
46
46
   parameter specifies a timeout in seconds for blocking operations like the
47
 
   connection attempt (if is not specified, or passed as None, the global
48
 
   default timeout setting will be used).
 
47
   connection attempt (if is not specified, the global default timeout setting
 
48
   will be used).
49
49
 
50
50
   .. versionchanged:: 2.6
51
51
      *timeout* was added.
126
126
   made.
127
127
 
128
128
   The optional *timeout* parameter specifies a timeout in seconds for the
129
 
   connection attempt. If is not specified, or passed as None, the object
130
 
   timeout is used (the timeout that you passed when instantiating the class);
131
 
   if the object timeout is also None, the global default timeout setting will
132
 
   be used.
 
129
   connection attempt. If no *timeout* is passed, the global default timeout
 
130
   setting will be used.
133
131
 
134
132
   .. versionchanged:: 2.6
135
133
      *timeout* was added.