[issue26816] Make concurrent.futures.Executor an abc

2016-05-26 Thread Xiang Zhang
Changes by Xiang Zhang : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue26816] Make concurrent.futures.Executor an abc

2016-04-21 Thread Xiang Zhang
Changes by Xiang Zhang : -- type: -> enhancement versions: +Python 3.5, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue26816] Make concurrent.futures.Executor an abc

2016-04-21 Thread Xiang Zhang
Xiang Zhang added the comment: Update the patch to remove more unnecessary base object. -- Added file: http://bugs.python.org/file42553/make_concurrent_futures_Executor_an_abc_v2.patch ___ Python tracker _

[issue26816] Make concurrent.futures.Executor an abc

2016-04-21 Thread Xiang Zhang
New submission from Xiang Zhang: The documentation tells that concurrent.futures.Executor is an abstract class. Also PEP3148 tells so and says concurrent.futures.Executor.submit is an abstract method and must be implemented by Executor subclasses. I think using abc.ABCMeta here is a good choic