diff options
author | Christian Heimes <christian@python.org> | 2021-11-20 09:18:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 09:18:48 (GMT) |
commit | 5596909eac4abdc9927c2e7751bea34fbcfdc624 (patch) | |
tree | 1dd04df859b59d224c59d5123fc6ca41697927b2 /Modules/Setup | |
parent | be36e0634060c7d5dee8e8876fb888bbb53d992a (diff) | |
download | cpython-5596909eac4abdc9927c2e7751bea34fbcfdc624.zip cpython-5596909eac4abdc9927c2e7751bea34fbcfdc624.tar.gz cpython-5596909eac4abdc9927c2e7751bea34fbcfdc624.tar.bz2 |
bpo-45847: Port _scproxy to PY_STDLIB_MOD (GH-29644)
Diffstat (limited to 'Modules/Setup')
-rw-r--r-- | Modules/Setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Setup b/Modules/Setup index 5a7c232..d3647ec 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -267,8 +267,8 @@ PYTHONPATH=$(COREPYTHONPATH) #_curses -lncurses -lncursesw -ltermcap _cursesmodule.c #_curses_panel -lpanel -lncurses _curses_panel.c -# macOS specific modules -# _scproxy _scproxy.c -framework SystemConfiguration -framework CoreFoundation +# macOS specific module, needs SystemConfiguration and CoreFoundation framework +# _scproxy _scproxy.c # Examples |