diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2007-07-22 02:18:36 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2007-07-22 02:18:36 +0000 |
| commit | bac6a2f88ecb27ba8a02d81b0b64cbd2f19445d4 (patch) | |
| tree | 5309a95f5d865ccef1a2380cc307990c8cee9569 | |
| parent | f2303b6f7aa744f8edf4ecf28b7c88db222386f8 (diff) | |
Fixed #4945 -- Removed unused `GET_ITERATOR_CHUNK_SIZE` definition from manager.py. `GET_ITERATOR_CHUNK_SIZE` is already defined in query.py. Thanks zigiDev@mac.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5743 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/models/manager.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/django/db/models/manager.py b/django/db/models/manager.py index b60eed262a..c49cb93d8c 100644 --- a/django/db/models/manager.py +++ b/django/db/models/manager.py @@ -3,10 +3,6 @@ from django.dispatch import dispatcher from django.db.models import signals from django.db.models.fields import FieldDoesNotExist -# Size of each "chunk" for get_iterator calls. -# Larger values are slightly faster at the expense of more storage space. -GET_ITERATOR_CHUNK_SIZE = 100 - def ensure_default_manager(sender): cls = sender if not hasattr(cls, '_default_manager'): |
