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.

作者 eli.bendersky
收信人 Arfrever, effbot, eli.bendersky, eric.araujo, ezio.melotti, flox, python-dev, scoder
日期 2012-02-11.11:59:42
SpamBayes Score 0.00018128195
Marked as misclassified
Message-id <1328961582.94.0.571683586793.issue13988@psf.upfronthosting.co.za>
In-reply-to
内容
Another random cleanup idea:

ElementTree.py has this code:

try:
    from . import ElementPath
except ImportError:
    ElementPath = _SimpleElementPath()

Since in the stdlib ElementPath.py is always there, this is meaningless, so I'd say this try... except ImportError contraption can be removed, as well as _SimpleElementPath, and just replaced by:

from . import ElementPath
历史
日期 用户 动作 参数
2012-02-11 11:59:43eli.bendersky修改recipients: + eli.bendersky, effbot, scoder, ezio.melotti, eric.araujo, Arfrever, flox, python-dev
2012-02-11 11:59:42eli.bendersky修改messageid: <1328961582.94.0.571683586793.issue13988@psf.upfronthosting.co.za>
2012-02-11 11:59:42eli.bendersky链接issue13988 messages
2012-02-11 11:59:42eli.bendersky创建