Ticket #5289: se_python23_fix.patch
File se_python23_fix.patch, 522 bytes (added by , 17 years ago) |
---|
-
django/core/schema_evolution.py
6 6 import os, re, shutil, sys, textwrap 7 7 import management 8 8 9 try: 10 set 11 except NameError: 12 from sets import Set as set # Python 2.3 fallback 9 13 10 14 def get_sql_evolution_check_for_new_fields(klass, new_table_name): 11 15 "checks for model fields that are not in the existing data structure"