Opened 17 years ago

Closed 17 years ago

#5239 closed (wontfix)

Django uses __builtins__, which is guaranteed only in CPython

Reported by: leo.soto@… 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)

django-__builtin__.patch (1.3 KB ) - added by leo.soto@… 17 years ago.
Simple patch (uses the builtin module where builtins were previously used)

Download all attachments as: .zip

Change History (3)

by leo.soto@…, 17 years ago

Attachment: django-__builtin__.patch added

Simple patch (uses the builtin module where builtins were previously used)

comment:1 by anonymous, 17 years ago

Has patch: set

comment:2 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

This particular side-effect will be fixed in a different way by #2920.

Note: See TracTickets for help on using tickets.
Back to Top