﻿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
5636	Admin backend uses `set` without the Python 2.3 fallback	anonymous	nobody	"When using svn and python2.3  ant try top login as user getting an error global name 'set' is not defined.

To fix need to add at the top into django/contrib/auth/backends.py:

{{{
try:
    set
except NameError:
    from sets import Set as set   # Python 2.3 fallback
}}}

"		closed	Contrib apps	dev		fixed			Ready for checkin	1	0	0	0	0	0
