py2.7.egg\pylint\checkers\format.py", line 477, in process_moduleAttributeError: 'Module' object has no attribute 'future_imports'
Process "Pylint" terminated, ExitCode
我正在通过继承来自asyncio.Future的一些自定义属性来创建一个作业类,并期望作业实例的功能类似于原始的未来。当我在协程中调用job.set_result时,它会引发一个Future object is not initialized error,然后我试图通过调用asyncio.ensure_future来初始化以后我尝试了更多,发现未来通常是由loop.create_future()创造的,然而,没有选项来创造我的自定义未来。 下面是一个例
python3.4/site-packages/tornado/ioloop.py", line 350, in configurable_default File "<path>/ss/lib/python3.4/site-packages/tornado/platform/asyncio.py", line&