Changes between Version 28 and Version 29 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Apr 16, 2008, 8:05:04 AM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v28 v29  
    9494=== Problems ===
    9595
    96  1. django/template/loader.py: the "bad" algorithm above, patch attached to #6950
    97  1. django/core/serializers/__init__.py: `_load_serializers()` is unsafe, patch attached to #FIXME:
     96 1. `django/template/loader.py`: the "bad" algorithm above, patch attached to #6950
     97 1. `django/core/serializers/__init__.py`: `_load_serializers()` is unsafe, patch attached to #FIXME:
    9898{{{
    99991. thread 1: if not _serializers: true --> _load_serializers(), enter for loop
     
    1021023. thread 1: register_serializer(y)
    103103}}}
    104  1. django/db/models/fields/related.py: `append()` in `add_lazy_relation()` can add duplicated values, which may or may not confuse `pop()` in `do_pending_lookups()`
     104 1. `django/db/models/fields/related.py`: `append()` in `add_lazy_relation()` can add duplicated values, which may or may not confuse `pop()` in `do_pending_lookups()`
    105105
    106106=== Raw `grep` results ===
Back to Top