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 PyUser
Recipients PyUser
Date 2019-05-21.08:26:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558427186.18.0.280662409984.issue36987@roundup.psfhosted.org>
In-reply-to
Content
Python 2.7.15rc1 (default, Nov 12 2018, 14:31:15) [GCC 7.3.0] on linux2 Type "help", "copyright", "credits" or "license" for more information.

>>> d = {"a": 1, "b": 2}
>>> d ["c"] = d
>>> d ["c"] {'a': 1, 'c': {...}, 'b': 2}
>>> d ["c"] ["c"] {'a': 1, 'c': {...}, 'b': 2}

why does the key value 'c' have a 'c' key in it?
History
Date User Action Args
2019-05-21 08:26:26PyUsersetrecipients: + PyUser
2019-05-21 08:26:26PyUsersetmessageid: <1558427186.18.0.280662409984.issue36987@roundup.psfhosted.org>
2019-05-21 08:26:26PyUserlinkissue36987 messages
2019-05-21 08:26:26PyUsercreate