Changes between Version 55 and Version 56 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Jul 8, 2008, 8:40:32 AM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v55 v56  
    55= Django threading review =
    66
    7 Relevant tickets: #5632, #6950, #1442.
     7Relevant tickets: #5632, #6950, #1442, #7676.
    88
    99Relevant discussions: http://groups.google.com/group/django-users/browse_frm/thread/a7d42475b66530bd, http://groups.google.com/group/django-developers/browse_thread/thread/fbcfa88c997d1bb3,
     
    107107||django/utils/translation/trans_real.py||`_accepted, _active, _default, _translations`||OK||explicit threading support, no inefficiencies||
    108108||django/core/urlresolvers.py||`_callable_cache, _resolver_cache`||OK, `memoize` decorator||double `__import__`||
    109 ||`django/core/serializers/__init__.py`||`_serializers`||PROBLEM, incomplete init in `_load_serializers`||||
     109||`django/core/serializers/__init__.py`||`_serializers`||PROBLEM, see #7676, incomplete init in `_load_serializers`||||
    110110||django/db/models/fields/related.py||`pending_lookups`||OK?, needs further review||`append()` in `add_lazy_relation()` can add duplicated values, which may or may not confuse `pop()` in `do_pending_lookups()`||
    111111||django/db/transaction.py||`dirty, state`||OK||explicit threading support, no inefficiencies||
Back to Top