Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-35545: Fix mishandling of scoped IPv6 addresses #11403

Closed

Commits on Jan 2, 2019

  1. Clarify purpose of _ensure_resolved() and enforce usage.

    High-level APIs such as create_connection() accept (host, port), while
    low-level APIs such as sock_connect() accept socket address tuples.
    _ensure_resolved() should be used exactly once to turn (host, port)
    into an address tuple.
    
    The signature of _ensure_resolved() was changed from (address, *, ...)
    to (host, port, *, ...) to enforce this.
    twisteroidambassador committed Jan 2, 2019
    Configuration menu
    Copy the full SHA
    d9d49b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a9f388 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2019

  1. Configuration menu
    Copy the full SHA
    58743a0 View commit details
    Browse the repository at this point in the history