Fixed #1747 -- Fixed error in docs/model-api.txt.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2819 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-05-03 04:19:59 +00:00
parent aa3712bef0
commit c62a014049
1 changed files with 0 additions and 10 deletions

View File

@ -1277,16 +1277,6 @@ of object instances. For example::
Now, every ``Pizza`` object will have a ``is_disgusting()`` method.
Note that the scope of custom methods is modified to be the same as the module
scope. These methods do NOT have access to globals within your model's module.
Additionally, custom methods have access to a few commonly-used objects for
convenience:
* The ``datetime`` module from Python's standard library.
* The ``db`` object from ``django.core.db``. This represents the database
connection, so you can do custom queries via a cursor object. See
"Executing custom SQL" below.
See `Giving models custom methods`_ for a full example.
.. _Giving models custom methods: http://www.djangoproject.com/documentation/models/custom_methods/