[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-05 Thread Brett Cannon
Brett Cannon added the comment: Discussion occurred on http://bugs.python.org/issue15767 -- ___ Python tracker ___ ___ Python-bugs-lis

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: > As ModuleNotFoundError is going to be reverted so should the changesets for > this issue. Could you possibly clarify this?. Pointers? -- ___ Python tracker ___

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7769c4d72806 by Brett Cannon in branch 'default': Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) http://hg.python.org/cpython/rev/7769c4d72806 -- ___ Python tracker

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon : -- dependencies: -add ModuleNotFoundError ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Brett Cannon added the comment: As ModuleNotFoundError is going to be reverted so should the changesets for this issue. -- resolution: fixed -> status: closed -> open ___ Python tracker __

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-13 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8d28d44f3a9a by Brett Cannon in branch 'default': Issue #18200: Update the stdlib (except tests) to use http://hg.python.org/cpython/rev/8d28d44f3a9a -- nosy: +python-dev ___ Python tracker

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-13 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-12 Thread Brett Cannon
Brett Cannon added the comment: Here is a patch that uses ModuleNotFoundError in the stdlib sans test modules. -- keywords: +patch Added file: http://bugs.python.org/file30568/use_ModuleNotFoundError.diff ___ Python tracker

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-12 Thread Brett Cannon
Changes by Brett Cannon : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-12 Thread Brett Cannon
Brett Cannon added the comment: Changeset 84105:281857369a78 and 84106:c4d7228421df have some updates to use ModuleNotFoundError. -- ___ Python tracker ___ _

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-12 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-12 Thread Brett Cannon
Changes by Brett Cannon : -- dependencies: +add ModuleNotFoundError ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18200] Update stdlib to use ModuleNotFoundError

2013-06-12 Thread Brett Cannon
New submission from Brett Cannon: The common idiom:: try: import something except ImportError: pass should be updated to use ModuleNotFoundError instead to not accidentally swallow ImportError exceptions which signal actual errors. -- components: Library (Lib) keywords: easy mes