This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients giampaolo.rodola, lcatucci, vstinner
Date 2008-12-02.12:44:17
SpamBayes Score 1.309557e-06
Marked as misclassified No
Message-id <1228221859.46.0.709908551559.issue4473@psf.upfronthosting.co.za>
In-reply-to
Content
"lst[1:] if len(lst)>1 else []" is useless, lst[1:] alone does the 
same :-) So it can be simplify to:
  def _parsecap(line):
     lst = line.split()
     return lst[0], lst[1:]

You might add a real example in the capa() docstring.

About poplib_02_sock_shutdown.diff: I'm not sure that poplib is the 
right place to fix the issue... if there is really an issue. Why not 
calling shutdown directly in socket.close()? :-)

You removed self._sock, nice.
History
Date User Action Args
2008-12-02 12:44:19vstinnersetrecipients: + vstinner, giampaolo.rodola, lcatucci
2008-12-02 12:44:19vstinnersetmessageid: <1228221859.46.0.709908551559.issue4473@psf.upfronthosting.co.za>
2008-12-02 12:44:18vstinnerlinkissue4473 messages
2008-12-02 12:44:17vstinnercreate