Changes between Version 43 and Version 44 of DjangoSpecifications/Core/Threading
- Timestamp:
- Apr 26, 2008, 3:08:28 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoSpecifications/Core/Threading
v43 v44 138 138 }}} 139 139 140 As with globals, review is needed for140 As with globals, there are three types of class variables, 141 141 1. class variables that are assigned to when the class is defined and never modified later (THREAD-SAFE), 142 142 1. mutable class level data structures (lists and dictionaries, also instances) that are assigned to when the class is defined but whose elements are modified in methods and that are accessed without using the `__class__` keyword (NOT THREAD-SAFE),