A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2009-December/094512.html below:

[Python-Dev] Splitting something into two steps produces different behavior from doing it in one fell swoop in Python 2.6.2

[Python-Dev] Splitting something into two steps produces different behavior from doing it in one fell swoop in Python 2.6.2 [Python-Dev] Splitting something into two steps produces different behavior from doing it in one fell swoop in Python 2.6.2Roy Hyunjin Han starsareblueandfaraway at gmail.com
Fri Dec 11 19:31:02 CET 2009
While debugging a network algorithm in Python 2.6.2, I encountered
some strange behavior and was wondering whether it has to do with some
sort of code optimization that Python does behind the scenes.


************
After initialization: defaultdict(<type 'set'>, {1: set([1])})
Popping and updating in two steps: defaultdict(<type 'set'>, {1: set([1])})
************
After initialization: defaultdict(<type 'set'>, {1: set([1])})
Popping and updating in one step: defaultdict(<type 'set'>, {})


import collections
print '************'
x = collections.defaultdict(set)
x[1].update([1])
print 'After initialization: %s' % x
items = x.pop(1)
x[1].update(items)
print 'Popping and updating in two steps: %s' % x
print '************'
y = collections.defaultdict(set)
y[1].update([1])
print 'After initialization: %s' % y
y[1].update(y.pop(1))
print 'Popping and updating in one step: %s' % y
-------------- next part --------------
A non-text attachment was scrubbed...
Name: inOneStepVSTwoSteps.py
Type: application/octet-stream
Size: 394 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/python-dev/attachments/20091211/323e9c41/attachment.obj>
More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4