0

功能

def _copying(self):
    result = self.result.toPlainText().strip().split('\n')
    to_copy = '\n'.join(result)

    pyperclip.copy(to_copy)

MainWindow()我的 PyQt5 项目中,在 contextlib.py 中引发了一个异常“StopIteration _GeneratorContextManager()line 119 'next(self.gen)',. result是一个ui.TextEdit对象。你能告诉我这是什么意思吗?谷歌说我应该将我的 func 包装到 with-construction 中,但我真的不明白如何,也不确定这是一个好主意。

调试器说:

__exception__ = {tuple} <class 'tuple'>: (<class 'StopIteration'>, StopIteration(), <traceback object at 0x045DA918>)
 0 = {type} <class 'StopIteration'>
  args = {getset_descriptor} <attribute 'args' of 'BaseException' objects>
  value = {member_descriptor} <member 'value' of 'StopIteration' objects>
 1 = {StopIteration} 
  args = {tuple} <class 'tuple'>: ()
  value = {NoneType} None
 2 = {traceback} <traceback object at 0x045DA918>
  tb_frame = {frame} __exit__ [contextlib.py:119]  id:54111736
  tb_lasti = {int} 16
  tb_lineno = {int} 119
  tb_next = {NoneType} None
 __len__ = {int} 3

控制台什么也没说。但该项目正在崩溃。

4

1 回答 1

0

StopIteration 是完全正常的和预期的。这是正常运行的一部分contextlib.contextmanager。它应该发生,它被抓住并立即处理;如果没有发生,那就有问题了。

我不知道你是如何最终看到这个异常的,考虑到它是如何从contextlib内部逃逸出来的,但是如果你把它归咎于你的代码问题,那你就错了事物。

于 2019-02-01T07:42:54.120 回答