[issue15586] Provide some examples for usage of ElementTree methods/attributes

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 094423a65a4e by Eli Bendersky in branch '2.7': Issue #15586: porting ET's new documentation bits to 2.7. Patch by Daniel Ellis http://hg.python.org/cpython/rev/094423a65a4e -- ___ Python tracker

[issue15586] Provide some examples for usage of ElementTree methods/attributes

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7012f6a74f66 by Eli Bendersky in branch 'default': Issue #15586: fix prompts in some documentation examples http://hg.python.org/cpython/rev/7012f6a74f66 -- ___ Python tracker

[issue14905] zipimport.c needs to support namespace packages when no 'directory' entry exists

2012-08-17 Thread Eric Snow
Changes by Eric Snow : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue15720] move __import__() out of the default lookup chain

2012-08-17 Thread Eric Snow
New submission from Eric Snow: When people want to import modules with "runtime" names, they regrettably turn to __import__(), have done so for many years, and likely will for a while. If it were less convenient to use __import__(), fewer people would use it. I'm putting together a patch that

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Eric Snow
Eric Snow added the comment: I've taken the tanget over to issue15720. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue15578] Crash when modifying sys.modules during import

2012-08-17 Thread Eric Snow
Eric Snow added the comment: Here's the deal. import_module_level() gets called for v1 from sa (where "globals" comes from). In that function it first calls get_parent(), which returns a borrowed reference to the sa module object. Then that parent object is passed to load_next() where the act

[issue15716] Ability to specify the PYTHONPATH via a command line flag

2012-08-17 Thread Eric Snow
Eric Snow added the comment: Would issue14803 be sufficient? Certainly not quite as concise, but deferring to that solution would limit the proliferation of command-line arguments to the interpreter. -- ___ Python tracker

[issue15720] move __import__() out of the default lookup chain

2012-08-17 Thread Eric Snow
Eric Snow added the comment: Ah, __import__() is used all over the place in the stdlib. I won't have time right away to put together the patch then. However, here's what I'm planning: * expose builtin___import__() (from Python/bltinmodule.c) as imp.__import__(). * expose one used by the inter

<    1   2