Opened 18 years ago

Closed 18 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
Pull Requests:How to create a pull request

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

Change History (3)

by leo.soto@…, 18 years ago

Attachment: django-__builtin__.patch added

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

comment:1 by anonymous, 18 years ago

Has patch: set

comment:2 by Malcolm Tredinnick, 18 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