Changes between Initial Version and Version 3 of Ticket #26186


Ignore:
Timestamp:
Feb 9, 2016, 12:23:46 PM (8 years ago)
Author:
skyjur
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26186 – Description

    initial v3  
    1616    class Meta:
    1717          abstract = True
     18}}}
    1819
     20'''app_A/models.py:'''
     21
     22{{{
     23from .abstract import AbstractModel1, AbstractModel12
    1924
    2025class Model1(AbstractModel1):
     
    3035
    3136{{{
    32 from app_A.models import AbstractModel1, AbstractModel2
     37from app_A.abstract import AbstractModel1, AbstractModel2
    3338
    3439class Model1(AbstractModel1):
     
    4045
    4146in Django 1.8, the `app_B.Model2.model1` would point to `app_B.Model1`, but in Django 1.9.2 it points to `app_A.Model1` so my code no longer works.
     47
     48
     49Test case can be found: https://github.com/skyjur/django-ticketing/tree/master/ticket_26186
Back to Top