This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eli.bendersky
Recipients effbot, eli.bendersky, flox, scoder
Date 2012-02-10.15:46:00
SpamBayes Score 9.068963e-05
Marked as misclassified No
Message-id <1328888761.18.0.11296719831.issue13988@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, that may be PEP 399:

  If an acceleration module is provided it is to be named the same as the module it is accelerating with an underscore attached as a prefix, e.g., _warnings for warnings. The common pattern to access the accelerated code from the pure Python implementation is to import it with an import *, e.g., from _warnings import *. This is typically done at the end of the module to allow it to overwrite specific Python objects with their accelerated equivalents. 

However, it's hardly a rule, just describing a "common pattern". I wonder why this approach is preferable to the one I proposed (explicit facade module)?
History
Date User Action Args
2012-02-10 15:46:01eli.benderskysetrecipients: + eli.bendersky, effbot, scoder, flox
2012-02-10 15:46:01eli.benderskysetmessageid: <1328888761.18.0.11296719831.issue13988@psf.upfronthosting.co.za>
2012-02-10 15:46:00eli.benderskylinkissue13988 messages
2012-02-10 15:46:00eli.benderskycreate