Changes between Version 21 and Version 22 of DjangoSpecifications/Core/Threading
- Timestamp:
- Apr 14, 2008, 2:27:02 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoSpecifications/Core/Threading
v21 v22 56 56 for x in y: 57 57 tmp.append(x) 58 foo = t mp # assignment is "atomic"58 foo = tuple(tmp) # assignment is "atomic", tuple is const-correct and more efficient 59 59 }}} 60 60