Changes between Version 30 and Version 31 of DjangoSpecifications/Core/Threading
- Timestamp:
- Apr 17, 2008, 6:58:03 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoSpecifications/Core/Threading
v30 v31 86 86 ||django/template/loaders/app_directories.py||`app_template_dirs`||MODULE LEVEL INIT|||| 87 87 ||django/utils/translation/trans_real.py||`_accepted, _active, _default, _translations`||OK||explicit threading support, no inefficiencies|| 88 ||django/core/urlresolvers.py||`_callable_cache, _resolver_cache`|| `memoize` decorator||duplicated module loading with `__import__` possible||88 ||django/core/urlresolvers.py||`_callable_cache, _resolver_cache`||OK, `memoize` decorator||duplicated module loading with `__import__` possible|| 89 89 ||`django/core/serializers/__init__.py`||`_serializers`||PROBLEM, incomplete init in `_load_serializers`|||| 90 90 ||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()`||