X Tutup
The Wayback Machine - https://web.archive.org/web/20221207034327/https://github.com/python/cpython/pull/99969
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

gh-99766:Update connection.py,SocketClient Adds the family parameter #99969

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

thickas
Copy link

@thickas thickas commented Dec 3, 2022

SocketClient Adds the family parameter,enable multiprocessing.connection.Client support IPV6。

Use Examples:

from multiprocessing.connection import Client
address = ('fe80::2', 18888,0,0)
with Client(address,family='AF_INET6') as conn:
    conn.send('message') 

SocketClient Adds the family parameter,enable multiprocessing.connection.Client support IPV6。
@bedevere-bot
Copy link

bedevere-bot commented Dec 3, 2022

Most changes to Python require a NEWS entry.

Please add it using the blurb_it web app or the blurb command-line tool.

@cpython-cla-bot
Copy link

cpython-cla-bot bot commented Dec 3, 2022

The following commit authors need to sign the Contributor License Agreement:

Click the button to sign:
CLA not signed

@thickas
Copy link
Author

thickas commented Dec 6, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants
X Tutup