diff options
author | Ask Solem <ask@celeryproject.org> | 2016-04-06 11:38:24 -0700 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2016-04-06 11:38:24 -0700 |
commit | 41b7b5f4e4e2099317d15a7ac13fbb22c80e1367 (patch) | |
tree | dd08167b1253e4eed95f815436ba5b94208e07e5 /amqp/connection.py | |
parent | ddd7011698443dfe4016969c665fa8a068c73c17 (diff) | |
download | py-amqp-41b7b5f4e4e2099317d15a7ac13fbb22c80e1367.tar.gz |
Removes outdated funtests directory
Diffstat (limited to 'amqp/connection.py')
-rw-r--r-- | amqp/connection.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/amqp/connection.py b/amqp/connection.py index 7407aca..f83f386 100644 --- a/amqp/connection.py +++ b/amqp/connection.py @@ -14,13 +14,12 @@ # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 -from __future__ import absolute_import +from __future__ import absolute_import, unicode_literals import logging import socket import uuid -from array import array from io import BytesIO from vine import ensure_promise @@ -34,7 +33,7 @@ from .exceptions import ( ConnectionForced, ConnectionError, error_for_code, RecoverableConnectionError, RecoverableChannelError, ) -from .five import range, values, monotonic +from .five import array, range, values, monotonic from .method_framing import frame_handler, frame_writer from .serialization import _write_table from .transport import Transport |