Quentin Peter

Results 103 comments of Quentin Peter

looks like "Copy full cell contents to the console when running code cells"doesn't play nice with debug cell

This is very cool! I tried to come up with something like that a while ago so I might have some insight: - `os.fork` is only avilable in unix: https://docs.python.org/3/library/os.html#os.fork...

Maybe saving the namespace would be enough?

I fixed it in spyder with: ``` import sys sys.stdout.isatty = lambda: True ``` Apparently fastprogress only works if `sys.stdout.isatty()` is True or if you are inside a notebook. See...

> > So there might be a tractable path towards a debugger implementation with ipykernel, but without the ability to e.g. add a breakpoint when code is running etc. A...

I tested it again and still have the problem. Maybe it is OSX specific? ``` % python3 test_qtbot.py ============================= test session starts ============================== platform darwin -- Python 3.7.7, pytest-5.3.1, py-1.8.0,...

But @The-Compiler replicated the bug on macOS?

@nicoddemus should the “question” label be removed as this is a reproduced bug rather than a question? (Reproduced on macOS by @The-Compiler)

Calling `QEventLoop.quit()` inside `QApplication.processEvents` has no effect on macOS. Code to reproduce: ```python import time from PyQt5.QtWidgets import QApplication from PyQt5.QtCore import QEventLoop, QTimer # from PyQt6.QtWidgets import QApplication #...

I will send a bug report on the pyqt mailing list