Changes between Version 58 and Version 59 of DjangoSpecifications/Core/Threading
- Timestamp:
- Sep 2, 2008, 8:03:26 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoSpecifications/Core/Threading
v58 v59 157 157 1. class variables that are initialized when the class is defined and never modified later (THREAD-SAFE), 158 158 1. mutable class level data structures that are initialized when the class is defined but whose elements are modified in methods and that are accessed without using the `__class__` keyword (NOT THREAD-SAFE), 159 1. class variables initialized in methods by using the `__class__` keyword (NOT THREAD-SAFE),159 1. class variables initialized in methods by using the `__class__` keyword or directly by `Classname.varname` (NOT THREAD-SAFE), 160 160 161 161 Metaclasses -- think through the implications.