﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
22350	Django 1.7 migration files do not support Python 3.2	Trey Hunner	loic84	"Steps to reproduce:

1. Run ""python manage.py makemigrations appname"" on a new app
2. Run ""python3.2 manage.py migrate"" (with Django installed in python3.2 site-packages)
3. View traceback due to syntax error.  Example:


{{{
  File ""/.../django-email-log/email_log/migrations/0001_initial.py"", line 14
    (u'id', models.AutoField(verbose_name=u'ID', serialize=False, auto_created=True, primary_key=True)),
         ^
SyntaxError: invalid syntax
}}}

The syntax error is due to the use of the u prefix in front of string literals.

In my opinion, Python 3.2 support is unimportant because Python 3.3 made so many syntactic improvements.  However, Python 3.2 support is currently noted in the documentation."	Bug	closed	Migrations	1.7-beta-1	Release blocker	fixed			Accepted	1	0	0	0	0	0
