[issue1655] imaplib is not IPv6-capable

2009-05-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r72662, thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue1655] imaplib is not IPv6-capable

2009-05-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +pitrou stage: -> patch review versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___ Pytho

[issue1655] imaplib is not IPv6-capable

2007-12-19 Thread Derek Morr
Derek Morr added the comment: I think it makes more sense to use socket.create_connection(), which performs the getaddrinfo call. It makes the patch against imaplib more compact. I've attached a new patch that uses create_connection() Added file: http://bugs.python.org/file9004/imaplib_ipv6.patc

[issue1655] imaplib is not IPv6-capable

2007-12-18 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +patch priority: -> normal type: -> rfe versions: +Python 2.6 -Python 2.5 __ Tracker <[EMAIL PROTECTED]> __

[issue1655] imaplib is not IPv6-capable

2007-12-18 Thread Derek Morr
New submission from Derek Morr: imaplib.IMAP4 and IMAP4_SSL do not use IPv6-capable name resolution APIs. Attached is a patch (lifted from httplib) that enables IPv6 in their open() methods. -- components: Library (Lib) files: imaplib_ipv6.patch messages: 58775 nosy: dmorr severity: norm