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


Ignore:
Timestamp:
Apr 26, 2008, 3:07:27 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v42 v43  
    138138}}}
    139139
    140 As with globals,
     140As with globals, review is needed for
    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