I wanted to have a look at the python deque class. When I checked the source code , I found the following at line 10
from _collections import deque, defaultdict
where exactly can I find this _collections module? I searched on my copy of the python source, but couldn't spot it.
Where is this class located?