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.
_______________________________________________
Ironpython-users mailing list
Ironpython-users@python.org
http://mail.python.org/mailman/listinfo/ironpython-users