[Ironpython-users] IronPython, Daily Digest 5/6/2012

no_reply at codeplex.com no_reply at codeplex.com
Mon May 7 09:51:09 CEST 2012


Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New comment] Duplicate key in dict

----------------------------------------------

ISSUES

1. [New comment] Duplicate key in dict
http://ironpython.codeplex.com/workitem/32527
User KeithJRome has commented on the issue:

"I have been poking around with this. The pop() is what causes things to go downhill.

This is fine:

d = {'1': 1, '2': 1, '3': 1, 'a7': 1, 'a8': 1}
d['a8'] = 5
print d

This is fine:

d = {'1': 1, '2': 1, '3': 1, 'a7': 1, 'a8': 1}
d['a8'] = 5
d.pop('a7')
print d

This is NOT fine:

d = {'1': 1, '2': 1, '3': 1, 'a7': 1, 'a8': 1}
d.pop('a7')
d['a8'] = 5
print d"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue Tracker. You can unsubscribe or change your issue notification settings on CodePlex.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20120507/b8be76b0/attachment.html>


More information about the Ironpython-users mailing list