Message185335
| 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 |
|