Ticket #7427: ext-db-bend-docstring.diff

File ext-db-bend-docstring.diff, 749 bytes (added by Ramiro Morales, 16 years ago)
  • django/db/backends/__init__.py

    diff -r 0528783a587e django/db/backends/__init__.py
    a b class BaseDatabaseOperations(object):  
    202202
    203203    def query_class(self, DefaultQueryClass):
    204204        """
    205         Given the default QuerySet class, returns a custom QuerySet class
    206         to use for this backend. Returns None if a custom QuerySet isn't used.
     205        Given the default Query class, returns a custom Query class
     206        to use for this backend. Returns None if a custom Query isn't used.
    207207        See also BaseDatabaseFeatures.uses_custom_query_class, which regulates
    208208        whether this method is called at all.
    209209        """
Back to Top