[issue7171] Add inet_ntop and inet_pton support for Windows

2014-03-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset f82145a516f0 by R David Murray in branch 'default': whatsnew: inet_pton/inet_ntop support windows (#7171). http://hg.python.org/cpython/rev/f82145a516f0 -- ___ Python tracker

[issue7171] Add inet_ntop and inet_pton support for Windows

2013-12-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue7171] Add inet_ntop and inet_pton support for Windows

2013-11-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 31fe38f95c82 by Jason R. Coombs in branch 'default': Update Misc/NEWS for Issue #7171 http://hg.python.org/cpython/rev/31fe38f95c82 -- ___ Python tracker __

[issue7171] Add inet_ntop and inet_pton support for Windows

2013-11-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 17b160baa20f by Atsuo Ishimoto in branch 'default': Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module. http://hg.python.org/cpython/rev/17b160baa20f New changeset a21f506d04c9 by Jason R. Coombs in branch '

[issue7171] Add inet_ntop and inet_pton support for Windows

2012-09-29 Thread Christian Heimes
Christian Heimes added the comment: As it's a new feature it must go into 3.4. -- components: +Extension Modules -Library (Lib) nosy: +christian.heimes versions: +Python 3.4 -Python 3.3 ___ Python tracker __

[issue7171] Add inet_ntop and inet_pton support for Windows

2012-09-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7171] Add inet_ntop and inet_pton support for Windows

2012-09-29 Thread pystranger
pystranger added the comment: I can't do that but I think the stage of the bug should be changed to "patch review" instead of "needs patch". -- nosy: +pystranger ___ Python tracker _

[issue7171] Add inet_ntop and inet_pton support for Windows

2012-07-15 Thread Atsuo Ishimoto
Atsuo Ishimoto added the comment: Implementation of inet_pton and inet_ntop by WSAAddressToStringA and WSAStringToAddressA for Windows. Conversion of IPv6 address might fail if IPv6 is not installed. Tested on Windows XP SP3 and Windows7. -- keywords: +patch nosy: +ishimoto Added fil

[issue7171] Add inet_ntop and inet_pton support for Windows

2011-09-01 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- components: +Library (Lib) -IO, Windows keywords: +easy versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___

[issue7171] Add inet_ntop and inet_pton support for Windows

2011-08-30 Thread honglei jiang
Changes by honglei jiang : -- nosy: +honglei.jiang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-07-20 Thread Greg Hazel
Greg Hazel added the comment: In addition, inet_ntop and inet_pton can be implemented on Windows platforms prior to Vista using WSAAddressToStringA and WSAStringToAddressA. -- ___ Python tracker __

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-07-20 Thread Greg Hazel
Changes by Greg Hazel : -- nosy: +ghazel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-05-27 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Windows versions: -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-05-27 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-05-27 Thread kookwekker
Changes by kookwekker : -- nosy: +kookwekker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue7171] Add inet_ntop and inet_pton support for Windows

2009-10-19 Thread Jason R. Coombs
New submission from Jason R. Coombs : According to the documentation, Microsoft now supports inet_ntop and inet_pton (http://msdn.microsoft.com/en-us/library/cc805843%28VS.85%29.aspx). This capability should be integrated into the socket module so it is supported cross-platform. -- compo