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 vstinner
Recipients Jim.Jewett, eric.araujo, eric.snow, georg.brandl, giampaolo.rodola, gvanrossum, michael.foord, pitrou, poq, r.david.murray, rhettinger, skrah, vstinner
Date 2012-03-29.11:08:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333019318.43.0.133762034784.issue14386@psf.upfronthosting.co.za>
In-reply-to
Content
"It is exposed as types.DictProxyType in Python 2..."

Yes, but the purpose of the issue is to enable its constructor. You cannot instanciate a DictProxy in Python 2:

>>> import types
>>> types.DictProxyType
<type 'dictproxy'>
>>> types.DictProxyType({})
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: cannot create 'dictproxy' instances
History
Date User Action Args
2012-03-29 11:08:38vstinnersetrecipients: + vstinner, gvanrossum, georg.brandl, rhettinger, pitrou, giampaolo.rodola, eric.araujo, r.david.murray, michael.foord, skrah, eric.snow, poq, Jim.Jewett
2012-03-29 11:08:38vstinnersetmessageid: <1333019318.43.0.133762034784.issue14386@psf.upfronthosting.co.za>
2012-03-29 11:08:37vstinnerlinkissue14386 messages
2012-03-29 11:08:37vstinnercreate