﻿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
22391	fallback to pymysql if MySQLdb not available	Collin Anderson	nobody	"Currently, pymysql is the best-supported mysql adapter on python 3. However, users need to use the following trick to get it to work with django:

{{{ 
   try:
        import pymysql
        pymysql.install_as_MySQLdb()
    except ImportError:
        pass
}}}

I think it would help python 3 adoption if users could use django and pymysql without additional steps."	New feature	closed	Database layer (models, ORM)	dev	Normal	wontfix		cmawebsite@…	Accepted	1	0	0	1	0	0
