Changes between Version 1 and Version 2 of Ticket #36766


Ignore:
Timestamp:
Dec 2, 2025, 7:24:48 AM (50 minutes ago)
Author:
Bob Kline
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36766 – Description

    v1 v2  
    77> ... add the name of the package that contains your `models` module.
    88
    9 in the [https://docs.djangoproject.com/en/5.2/topics/db/models/#using-models Using models] section of the tutorial.
     9in the [https://docs.djangoproject.com/en/5.2/topics/db/models/#using-models Using models] section of the documentation.
    1010
    11 In my experience, most Python programmers are not aware that, technically speaking, a package ''is'' a special type of module. This is due principally to the fact that most of the relevant language in the Python documentation implies that the term "modules" does not include packages. Earlier in the tutorial this package is referred to as a "package," not a "module," and there is no reason not to use the more specific term here, preventing unnecessary confusion.
     11In my experience, most Python programmers are not aware that, technically speaking, a package ''is'' a special type of module. This is due principally to the fact that most of the relevant language in the Python documentation implies that the term "modules" does not include packages. In the tutorial the application package is referred to as a "package," not a "module," and there is no reason not to use the more specific term here, preventing unnecessary confusion.
    1212
    1313I will submit a PR shortly.
Back to Top