Florian Bruhin
Florian Bruhin
Sounds good, but I'd suggest waiting until after the new config system (which is the next thing I plan to work on after QtWebEngine) until doing the reloading part. Last...
Merging this into #2794.
Right. We do have `:config-edit`, but the part about quickmarks/bookmarks got lost somewhere. Makes sense to have that as a separate issue.
It's not, hence the open issue. Appreciate the nice words, but comments like this mostly add noise to open source bugtrackers. That's what the :+1: button is for.
Somewhat related: - #629
@RonnyPfannschmidt I don't understand, why surrogate escapes? Aren't those intended where you want to "mangle" invalid characters to put them somewhere, where later the same application (or a different one)...
> Its using str because its the log message Huh? I mean here, where pluggy formats hook debug output (Python values!) into the string that should be written to the...
Ah, I spoke to soon: That alone doesn't fix this, but also using `repr(...)` here for the return value does: https://github.com/pytest-dev/pluggy/blob/5b24a4df70d963ee2dc92f663d3ac83155ba0bad/src/pluggy/_manager.py#L504 That means it gets logged as `finish pytest_fixture_setup -->...
Ah, despite `aqt list-qt --arch latest linux desktop` not listing `debug_information` as an "architecture", `aqt list-qt linux desktop --modules 6.9.2 debug_information` shows `qtwebengine` as module. However, `aqt install-qt linux desktop...
More minimal reproducer: ```python import inspect from typing import TYPE_CHECKING if TYPE_CHECKING: from _pytest.config import Config def pytest_configure(config: Config) -> None: ... inspect.signature(pytest_configure) ``` results in: ```pytb Traceback (most recent...