from collections import deque
recvBuffer=deque()
x1=b'\xFF'
recvBuffer.append(x1)
recvBuffer.extend(x1)
x2=recvBuffer.pop()
x3=recvBuffer.pop()
print(type(x1))
print(type(x2))
print(type(x3))
The above code prints the following on Python 3.2.3
<class 'bytes'>
<class 'int'>
<class 'bytes'>
Why did the byte change to an int when extend()-ed to a deque?
