Commit 3c4d3530 authored by Ian Kelly's avatar Ian Kelly
Browse files

Cleaned up some comments in the Oracle backend. Fixes #7139. Thanks, adamv.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7514 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 1dee3091
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
"""
Custom Query class for this backend (a derivative of
django.db.models.sql.query.Query).
Custom Query class for Oracle.
Derives from: django.db.models.sql.query.Query
"""

import datetime
@@ -12,8 +12,8 @@ _classes = {}

def query_class(QueryClass, Database):
    """
    Returns a custom djang.db.models.sql.query.Query subclass that is
    appropraite for Oracle.
    Returns a custom django.db.models.sql.query.Query subclass that is
    appropriate for Oracle.

    The 'Database' module (cx_Oracle) is passed in here so that all the setup
    required to import it only needs to be done by the calling module.