Changes between Initial Version and Version 1 of Ticket #21953


Ignore:
Timestamp:
Feb 4, 2014, 5:18:57 PM (11 years ago)
Author:
Tim Graham
Comment:

Added some formatting (please use preview) and tentatively marking as a release blocker to indicate the fix should be backported assuming this is confirmed to be a bug in Django.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21953

    • Property Severity NormalRelease blocker
  • Ticket #21953 – Description

    initial v1  
    77(I know that the two different test functions do not return the same objects - this is just test code)
    88
    9 ---------------MODEL-----------------
     9model:
     10{{{
    1011from django.db import models
    1112
     
    1617        ordering = ["id"]
    1718        app_label = 'app1'
     19}}}
    1820
    19 --------------TEST-----------------
     21test:
     22{{{
    2023import os
    2124import sys
     
    5255    customer = GetCustomer('Steve')
    5356    del customer
     57}}}
Back to Top