[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: It's a documentation bug, with_traceback is available in 3.x only. I now fixed the doc for 2.7, thanks for the report! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed

[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 22f991bb9b0b by Ezio Melotti in branch '2.7': #11484: remove paragraph about with_traceback from 2.7 doc. http://hg.python.org/cpython/rev/22f991bb9b0b -- nosy: +python-dev ___ Python tracker

[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Jonas H.
New submission from Jonas H. : Either a `BaseException.with_traceback` implementation is missing or the docs are wrong. http://docs.python.org/library/exceptions.html?highlight=with_traceback#exceptions.BaseException.with_traceback python3 -c 'print("with_traceback" in dir(BaseException))' Tru