Opened 17 years ago
Closed 17 years ago
#5239 closed (wontfix)
Django uses __builtins__, which is guaranteed only in CPython
Reported by: | Owned by: | Malcolm Tredinnick | |
---|---|---|---|
Component: | Internationalization | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
To have a chance of running Django on python implementations other than CPython, it should use the builtin module instead of the builtins global, as noted by http://docs.python.org/lib/module-builtin.html
Attachments (1)
Change History (3)
by , 17 years ago
Attachment: | django-__builtin__.patch added |
---|
comment:1 by , 17 years ago
Has patch: | set |
---|
comment:2 by , 17 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
This particular side-effect will be fixed in a different way by #2920.
Note:
See TracTickets
for help on using tickets.
Simple patch (uses the builtin module where builtins were previously used)