1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #22603 -- Reorganized classes in django.db.backends.

This commit is contained in:
Tim Graham
2015-01-12 15:20:40 -05:00
parent 737d24923a
commit 28308078f3
69 changed files with 3098 additions and 2990 deletions

View File

@@ -1,6 +1,8 @@
import re
from django.db.backends import BaseDatabaseIntrospection, FieldInfo, TableInfo
from django.db.backends.base.introspection import (
BaseDatabaseIntrospection, FieldInfo, TableInfo,
)
field_size_re = re.compile(r'^\s*(?:var)?char\s*\(\s*(\d+)\s*\)\s*$')