Changes between Initial Version and Version 1 of Ticket #36766


Ignore:
Timestamp:
Dec 2, 2025, 6:42:02 AM (93 minutes ago)
Author:
Bob Kline
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36766 – Description

    initial v1  
    99in the [https://docs.djangoproject.com/en/5.2/topics/db/models/#using-models Using models] section of the tutorial.
    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 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. 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.
    1212
    1313I will submit a PR shortly.
Back to Top