Changes between Version 43 and Version 44 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Apr 26, 2008, 3:08:28 PM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v43 v44  
    138138}}}
    139139
    140 As with globals, review is needed for
     140As with globals, there are three types of class variables,
    141141 1. class variables that are assigned to when the class is defined and never modified later (THREAD-SAFE),
    142142 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),
Back to Top