Changes between Version 55 and Version 56 of DjangoSpecifications/Core/Threading
- Timestamp:
- Jul 8, 2008, 8:40:32 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoSpecifications/Core/Threading
v55 v56 5 5 = Django threading review = 6 6 7 Relevant tickets: #5632, #6950, #1442 .7 Relevant tickets: #5632, #6950, #1442, #7676. 8 8 9 9 Relevant discussions: http://groups.google.com/group/django-users/browse_frm/thread/a7d42475b66530bd, http://groups.google.com/group/django-developers/browse_thread/thread/fbcfa88c997d1bb3, … … 107 107 ||django/utils/translation/trans_real.py||`_accepted, _active, _default, _translations`||OK||explicit threading support, no inefficiencies|| 108 108 ||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`|||| 110 110 ||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()`|| 111 111 ||django/db/transaction.py||`dirty, state`||OK||explicit threading support, no inefficiencies||