[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2016-01-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks for the report and the patch. I have fixed that in 3.5 and 3.6 docs. I found it reasonable to include the full module path for TimeoutError makeing it consist with asyncio and multiprocessing TimeoutError. Also, Error exception is not exposed via __all

[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2016-01-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 673d1ccea050 by Senthil Kumaran in branch '3.5': issue23962 - Reference the correct TimeoutError in concurrent.futures documentation. https://hg.python.org/cpython/rev/673d1ccea050 New changeset 2b0c7b67eca5 by Senthil Kumaran in branch 'default':

[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2015-12-05 Thread Martin Panter
Martin Panter added the comment: A similar problem used to exist with asyncio.TimeoutError: Issue 21376. There is no class called concurrent.future.Error, so I would remove that bit. Otherwise, the rest of the patch looks worthwhile. With asyncio and multiprocessing, the exception name is spel

[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2015-12-05 Thread Dingyuan Wang
Changes by Dingyuan Wang : -- nosy: +gumblex ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2015-04-14 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2015-04-14 Thread Ryder Lewis
Ryder Lewis added the comment: I attached a small patch that fixes the documentation, and also documents the other missing exceptions from concurrent.futures documentation. -- keywords: +patch Added file: http://bugs.python.org/file39029/issue23962.patch ___

[issue23962] Incorrect TimeoutError referenced in concurrent.futures documentation

2015-04-14 Thread Ryder Lewis
New submission from Ryder Lewis: The documentation at https://docs.python.org/3/library/concurrent.futures.html has several functions that case raise a TimeoutError. The hyperlink generated for TimeoutError links to the built-in exception https://docs.python.org/3/library/exceptions.html#Timeo