summaryrefslogtreecommitdiff
path: root/amqp/abstract_channel.py
diff options
context:
space:
mode:
Diffstat (limited to 'amqp/abstract_channel.py')
-rw-r--r--amqp/abstract_channel.py6
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']