Changes between Version 58 and Version 59 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Sep 2, 2008, 8:03:26 AM (16 years ago)
Author:
mrts
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v58 v59  
    157157 1. class variables that are initialized when the class is defined and never modified later (THREAD-SAFE),
    158158 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),
    160160
    161161Metaclasses -- think through the implications.
Back to Top