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 techtonik
Recipients amaury.forgeotdarc, docs@python, eric.snow, techtonik
Date 2013-03-27.13:48:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364392104.16.0.0467132087827.issue17546@psf.upfronthosting.co.za>
In-reply-to
Content
Example:

    l = locals()
    z = dict(a=5, b=3)

    lc = dict(l)
    zc = dict(z)

    print(lc == l)
    print(zc == z)

Gives:

    False
    True
History
Date User Action Args
2013-03-27 13:48:24techtoniksetrecipients: + techtonik, amaury.forgeotdarc, docs@python, eric.snow
2013-03-27 13:48:24techtoniksetmessageid: <1364392104.16.0.0467132087827.issue17546@psf.upfronthosting.co.za>
2013-03-27 13:48:24techtoniklinkissue17546 messages
2013-03-27 13:48:23techtonikcreate