diff options
| author | Bob Halley <halley@dnspython.org> | 2021-02-25 08:55:15 -0800 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2021-02-25 08:55:15 -0800 |
| commit | 5969ce9d22277f907ece5bddc4f02054fedd8734 (patch) | |
| tree | 41fd2145847332f252ee3b62e5f0a174fb0fddc7 /dns/_asyncbackend.py | |
| parent | c249ca426bc43a5cd634387f8b0d09848fa9a169 (diff) | |
| download | dnspython-windows_asyncio_fix.tar.gz | |
asyncio on Windows requries connected sockets. [Issue #637]windows_asyncio_fix
Diffstat (limited to 'dns/_asyncbackend.py')
| -rw-r--r-- | dns/_asyncbackend.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dns/_asyncbackend.py b/dns/_asyncbackend.py index 0ce316b..69411df 100644 --- a/dns/_asyncbackend.py +++ b/dns/_asyncbackend.py @@ -64,3 +64,6 @@ class Backend: # pragma: no cover source=None, destination=None, timeout=None, ssl_context=None, server_hostname=None): raise NotImplementedError + + def datagram_connection_required(self): + return False |
