This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients gvanrossum, rhettinger
Date 2016-12-19.06:19:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1482128373.3.0.983889719325.issue29011@psf.upfronthosting.co.za>
In-reply-to
Content
We have:

    # Concrete collection types.
    'Dict',
    'DefaultDict',
    'List',
    'Set',
    'FrozenSet',
    'NamedTuple',  # Not really a type.
    'Generator',

But no mention of Deque.

What this an intended omission?

I would like to be able to write something like this:

   user_posts = defaultdict(deque)  # type: DefaultDict[User, Deque[Post]]
History
Date User Action Args
2016-12-19 06:19:33rhettingersetrecipients: + rhettinger, gvanrossum
2016-12-19 06:19:33rhettingersetmessageid: <1482128373.3.0.983889719325.issue29011@psf.upfronthosting.co.za>
2016-12-19 06:19:33rhettingerlinkissue29011 messages
2016-12-19 06:19:33rhettingercreate