#8078 closed (fixed)
sets module deprecated in Python 2.6
Reported by: | Karen Tracey | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | python26 | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
django/contrib/admin/options.py imports sets, which causes a deprecation warning in Python 2.6. I'll attach a patch that uses set if available and only falls back to sets if necessary. Tested on Python 2.3.5, 2.5.1, and 2.6b2.
Attachments (1)
Change History (6)
Changed 15 years ago by
comment:1 Changed 15 years ago by
Keywords: | python26 added |
---|
comment:2 Changed 15 years ago by
Has patch: | set |
---|
comment:3 Changed 15 years ago by
milestone: | → 1.0 beta |
---|---|
Triage Stage: | Unreviewed → Ready for checkin |
comment:4 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
(In [8192]) Fixed #8078 -- Fixed a Python 2.3 incompatibility in
contrib/admin/options.py
, thanks Karen Tracey.