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 bgailer
Recipients amaury.forgeotdarc, bgailer, docs@python, eric.snow, techtonik
Date 2013-03-27.14:08:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <5152FD62.3080801@gmail.com>
In-reply-to <1364392104.16.0.0467132087827.issue17546@psf.upfronthosting.co.za>
Content
On 3/27/2013 9:48 AM, anatoly techtonik wrote:
> anatoly techtonik added the comment:
>
> Example:
>
>      l = locals()
>      z = dict(a=5, b=3)
>
>      lc = dict(l)
>      zc = dict(z)
>
>      print(lc == l)
>      print(zc == z)
>
> Gives:
>
>      False
>      True
Expected behavior.
lc is not another reference to locals(). It refers to a new object.
zc = ... updates locals() but not lc
History
Date User Action Args
2013-03-27 14:08:35bgailersetrecipients: + bgailer, amaury.forgeotdarc, techtonik, eric.snow
2013-03-27 14:08:35bgailerlinkissue17546 messages
2013-03-27 14:08:35bgailercreate