import os
import io
import socket
+import array
import urllib.request
- from urllib.request import Request, OpenerDirector
+ # The proxy bypass method imported below has logic specific to the OSX
+ # proxy config data structure but is testable on all platforms.
+ from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf
# XXX
# Request
Library
-------
++- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified
++ IP addresses in the proxy exception list.
++
- Issue #11491: dbm.error is no longer raised when dbm.open is called with
the "n" as the flag argument and the file exists. The behavior matches
the documentation and general logic.