From c62a014049257ada0d47c296eef2c14f51e49646 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 3 May 2006 04:19:59 +0000 Subject: [PATCH] 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 --- docs/model-api.txt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/model-api.txt b/docs/model-api.txt index de3fe10598..c24a3e76b9 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -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/