We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf11b78 commit 3936b51Copy full SHA for 3936b51
2 files changed
Lib/_pyrepl/commands.py
@@ -439,7 +439,7 @@ def do(self) -> None:
439
import _sitebuiltins
440
441
with self.reader.suspend():
442
- self.reader.msg = _sitebuiltins._Helper()() # type: ignore[assignment, call-arg]
+ self.reader.msg = _sitebuiltins._Helper()() # type: ignore[assignment]
443
444
445
class invalid_key(Command):
Lib/test/libregrtest/setup.py
@@ -40,7 +40,7 @@ def setup_process() -> None:
40
faulthandler.enable(all_threads=True, file=stderr_fd)
41
42
# Display the Python traceback on SIGALRM or SIGUSR1 signal
43
- signals = []
+ signals: list[signal.Signals] = []
44
if hasattr(signal, 'SIGALRM'):
45
signals.append(signal.SIGALRM)
46
if hasattr(signal, 'SIGUSR1'):
0 commit comments