diff options
Diffstat (limited to 'amqp/method_framing.py')
-rw-r--r-- | amqp/method_framing.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/amqp/method_framing.py b/amqp/method_framing.py index 85fbfba..b454524 100644 --- a/amqp/method_framing.py +++ b/amqp/method_framing.py @@ -19,12 +19,6 @@ from __future__ import absolute_import from collections import defaultdict, deque from struct import pack, unpack -try: - bytes -except NameError: - # Python 2.5 and lower - bytes = str - from .basic_message import Message from .exceptions import AMQPError, UnexpectedFrame from .five import range, string |