[issue24209] Allow IPv6 bind in http.server

2019-02-07 Thread Jason R. Coombs
Change by Jason R. Coombs : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue24209] Allow IPv6 bind in http.server

2019-02-07 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset f289084c83190cc72db4a70c58f007ec62e75247 by Jason R. Coombs in branch 'master': bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter. (#11767)

[issue24209] Allow IPv6 bind in http.server

2019-02-05 Thread Jason R. Coombs
Change by Jason R. Coombs : -- pull_requests: +11726, 11727, 11728 stage: resolved -> patch review ___ Python tracker ___ ___

[issue24209] Allow IPv6 bind in http.server

2019-02-05 Thread Jason R. Coombs
Change by Jason R. Coombs : -- pull_requests: +11726 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue24209] Allow IPv6 bind in http.server

2019-02-05 Thread Jason R. Coombs
Change by Jason R. Coombs : -- pull_requests: +11726, 11727 stage: resolved -> patch review ___ Python tracker ___ ___

[issue24209] Allow IPv6 bind in http.server

2019-02-05 Thread Jason R. Coombs
Jason R. Coombs added the comment: I don't believe the current patch as accepted has the right behaviors. First off, the default behavior, which indicates "all interfaces" only binds to IPv4 interfaces. Additionally, "-b localhost" only binds to IPv4 localhost. Ideally, the bind should

[issue24209] Allow IPv6 bind in http.server

2018-11-26 Thread Lisa Roach
Change by Lisa Roach : -- stage: patch review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24209] Allow IPv6 bind in http.server

2018-11-18 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.8 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24209] Allow IPv6 bind in http.server

2018-11-18 Thread Lisa Roach
Lisa Roach added the comment: Looks like the original author isn't around anymore (feel free to chime in if you are, Link!), so I went ahead and made a PR. I added a quick unit test, it's not much but more than nothing, plus updated the documentation. -- nosy: +lisroach

[issue24209] Allow IPv6 bind in http.server

2018-11-18 Thread Lisa Roach
Change by Lisa Roach : -- pull_requests: +9840 stage: test needed -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue24209] Allow IPv6 bind in http.server

2018-10-23 Thread Mayank Asthana
Change by Mayank Asthana : -- nosy: +masthana ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24209] Allow IPv6 bind in http.server

2018-10-10 Thread Radek Podgorny
Change by Radek Podgorny : -- nosy: +rpodgorny ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24209] Allow IPv6 bind in http.server

2018-04-27 Thread Jason R. Coombs
Jason R. Coombs added the comment: >From what I can tell, there's not currently any tests for the behavior of >`http.server` as a script, and that sounds like a non-trivial behavior to >test. I agree documentation updates for this change are essential, but I'd >suggest a

[issue24209] Allow IPv6 bind in http.server

2018-04-27 Thread Jason R. Coombs
Change by Jason R. Coombs : -- nosy: +jason.coombs ___ Python tracker ___ ___

[issue24209] Allow IPv6 bind in http.server

2017-01-25 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- nosy: +gregory.p.smith ___ Python tracker ___ ___

[issue24209] Allow IPv6 bind in http.server

2016-04-04 Thread Josh Lee
Changes by Josh Lee : -- nosy: +jleedev ___ Python tracker ___ ___ Python-bugs-list

[issue24209] Allow IPv6 bind in http.server

2015-05-23 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- nosy: +berker.peksag versions: -Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24209 ___

[issue24209] Allow IPv6 bind in http.server

2015-05-22 Thread Martin Panter
Martin Panter added the comment: I am no IPv6 expert, but this looks like a reasonable first approximation. The “http.server” module documentation should also be updated to say IPv6 addresses are supported on the command line, and I guess there should be a test case added. But maybe see

[issue24209] Allow IPv6 bind in http.server

2015-05-22 Thread Demian Brecht
Changes by Demian Brecht demianbre...@gmail.com: -- nosy: +demian.brecht ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24209 ___ ___

[issue24209] Allow IPv6 bind in http.server

2015-05-16 Thread Link Mauve
New submission from Link Mauve: When running `python -m http.server -b ::` (or any other IPv6), I’d expect people to be able to download from my IPv6. This patch fixes that issue. I also tested it on a dual-stack kernel, IPv4 requests work just fine and appear as :::127.0.0.1 for

[issue24209] Allow IPv6 bind in http.server

2015-05-16 Thread Martin Panter
Changes by Martin Panter vadmium...@gmail.com: -- nosy: +vadmium ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24209 ___ ___ Python-bugs-list