diff options
author | Ask Solem <ask@celeryproject.org> | 2014-01-16 15:01:19 +0000 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2014-01-16 15:01:19 +0000 |
commit | 97abf06e054398f22b7bf77aa6349d8a2ccd860b (patch) | |
tree | d4cabb26972ef44dbd836d3f7d43470654a50bd2 /amqp/abstract_channel.py | |
parent | bff6ddb0ea116e7c3b06f6cf2509c6411b3e4803 (diff) | |
parent | 07a312582d90b1303ff5d675613935392f6a6283 (diff) | |
download | py-amqp-readwrite.tar.gz |
Merge branch 'master' into readwritereadwrite
Conflicts:
amqp/transport.py
Diffstat (limited to 'amqp/abstract_channel.py')
-rw-r--r-- | amqp/abstract_channel.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/amqp/abstract_channel.py b/amqp/abstract_channel.py index 5e37bf9..28cfe13 100644 --- a/amqp/abstract_channel.py +++ b/amqp/abstract_channel.py @@ -19,12 +19,6 @@ from __future__ import absolute_import from .exceptions import AMQPNotImplementedError, RecoverableConnectionError from .serialization import AMQPWriter -try: - bytes -except NameError: - # Python 2.5 and lower - bytes = str - __all__ = ['AbstractChannel'] |