功能
def _copying(self):
result = self.result.toPlainText().strip().split('\n')
to_copy = '\n'.join(result)
pyperclip.copy(to_copy)
我的PyQt5项目MainWindow()
中的在contextlib.py _GeneratorContextManager()
,line 119 'next(self.gen)'
中引发异常“ StopIteration”。
result
是ui.TextEdit
对象。你能告诉我这是什么意思吗?
Google说我应该将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
控制台什么也没说。但是该项目正在崩溃。
答案 0 :(得分:0)
该StopIteration完全正常并且可以预期。这是contextlib.contextmanager
正常操作的一部分。它应该发生,并且立即被捕获并处理;如果它没有发生,那就有问题。
我不知道您是怎么想到异常的,考虑到它永远不会逃脱contextlib
内部,但是如果您将其归咎于代码的话问题,你在怪错了。