This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xiang.zhang
Recipients bquinlan, xiang.zhang
Date 2016-04-21.11:01:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461236512.66.0.771218032413.issue26816@psf.upfronthosting.co.za>
In-reply-to
Content
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 choice.

I propose a patch. The patch also remove some unnecessary object base class.
History
Date User Action Args
2016-04-21 11:01:52xiang.zhangsetrecipients: + xiang.zhang, bquinlan
2016-04-21 11:01:52xiang.zhangsetmessageid: <1461236512.66.0.771218032413.issue26816@psf.upfronthosting.co.za>
2016-04-21 11:01:52xiang.zhanglinkissue26816 messages
2016-04-21 11:01:52xiang.zhangcreate