Changes between Version 21 and Version 22 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Apr 14, 2008, 2:27:02 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v21 v22  
    5656      for x in y:
    5757         tmp.append(x)
    58       foo = tmp # assignment is "atomic"
     58      foo = tuple(tmp) # assignment is "atomic", tuple is const-correct and more efficient
    5959}}}
    6060
Back to Top