Changes between Version 7 and Version 8 of DevModelCreation


Ignore:
Timestamp:
Feb 15, 2018, 11:03:28 AM (6 years ago)
Author:
Justin Focus
Comment:

Updated old link to python docs

Legend:

Unmodified
Added
Removed
Modified
  • DevModelCreation

    v7 v8  
    55A couple of preliminaries: Firstly, if you just want to develop systems with Django, this information is not required at all. It is here for people who might want to poke around the internals of Django or fix any bugs that they may find.
    66
    7 Secondly, by the nature of the beast, class creation and initialisation delves a bit into the depths of Python's operation. A familiarity with the difference between a class and an instance, for example, will be helpful here. Section 3.2 of the [http://docs.python.org/ref/types.html Python Language Reference] might be of assistance.
     7Secondly, by the nature of the beast, class creation and initialisation delves a bit into the depths of Python's operation. A familiarity with the difference between a class and an instance, for example, will be helpful here. Section 3.2 of the [https://docs.python.org/3/reference/datamodel.html#the-standard-type-hierarchy Python Language Reference] might be of assistance.
    88
    99Unless otherwise noted, all of the files referred to here are in the source code tree in the {{{django/db/models/}}} directory. For reference purposes, imagine that we have a {{{models.py}}} file containing the following model.
Back to Top