[issue44030] Markup with_traceback code example

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue44030] Markup with_traceback code example

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: New changeset 6275ea02825731fd23f523058ac87aac53888740 by Miss Islington (bot) in branch '3.10': bpo-44030: Fix formatting error in exceptions docs (GH-25929) (GH-26086) https://github.com/python/cpython/commit/6275ea02825731fd23f523058ac87aac53888740 ---

[issue44030] Markup with_traceback code example

2021-05-12 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24725 pull_request: https://github.com/python/cpython/pull/26086 ___ Python tracker _

[issue44030] Markup with_traceback code example

2021-05-07 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue44030] Markup with_traceback code example

2021-05-05 Thread Miguel Brito
Miguel Brito added the comment: If we make it a code snippet it works. Just adding a `::` after the paragraph. Here's a print on Firefox locally: https://imgur.com/a/g2vsqf2 I created a PR for that if you think it's a good solution, feel free to merge :) -- _

[issue44030] Markup with_traceback code example

2021-05-05 Thread Miguel Brito
Change by Miguel Brito : -- keywords: +patch nosy: +miguendes nosy_count: 2.0 -> 3.0 pull_requests: +24596 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/25929 ___ Python tracker

[issue44030] Markup with_traceback code example

2021-05-04 Thread Terry J. Reedy
New submission from Terry J. Reedy : .../Doc/library/exceptions.rst, lines 99-105 has original ``SomeException`` had we allowed it to propagate to the caller. try: ... except SomeException: tb = sys.exc_info()[2] raise OtherExceptio