~pythonregexp2.7/python/issue2636

« back to all changes in this revision

Viewing changes to Doc/library/poplib.rst

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:36:32 UTC
  • mfrom: (39021.1.402 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609143632-wwwkx92u1t5l7yd3
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
   This class implements the actual POP3 protocol.  The connection is created when
30
30
   the instance is initialized. If *port* is omitted, the standard POP3 port (110)
31
31
   is used. The optional *timeout* parameter specifies a timeout in seconds for the
32
 
   connection attempt (if not specified, or passed as None, the global default
33
 
   timeout setting will be used).
 
32
   connection attempt (if not specified, the global default timeout setting will
 
33
   be used).
34
34
 
35
35
   .. versionchanged:: 2.6
36
36
      *timeout* was added.