From 1f0bbe47101fc4e047d6299c6d804bd1634c5136 Mon Sep 17 00:00:00 2001 From: nibrag Date: Tue, 17 May 2016 14:47:51 +0300 Subject: [PATCH] open_connection added to __all__ --- aiosocks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiosocks/__init__.py b/aiosocks/__init__.py index c2a8428..738b5fb 100644 --- a/aiosocks/__init__.py +++ b/aiosocks/__init__.py @@ -14,7 +14,7 @@ __all__ = ('Socks4Protocol', 'Socks5Protocol', 'Socks4Auth', 'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'SocksError', 'NoAcceptableAuthMethods', 'LoginAuthenticationFailed', 'SocksConnectionError', 'InvalidServerVersion', - 'InvalidServerReply', 'create_connection') + 'InvalidServerReply', 'create_connection', 'open_connection') @asyncio.coroutine