Skip to content

Commit

Permalink
Merge from 5.x: PR #20947
Browse files Browse the repository at this point in the history
Fixes #20800
  • Loading branch information
ccordoba12 committed May 22, 2023
2 parents 0b0b10e + 59d547a commit e09b768
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spyder/plugins/ipythonconsole/utils/kernelspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ def argv(self):
# Command used to start kernels
kernel_cmd = [
pyexec,
# This is necessary to avoid a spurious message on Windows.
# Fixes spyder-ide/spyder#20800.
'-Xfrozen_modules=off',
'-m', 'spyder_kernels.console',
'-f', '{connection_file}'
]
Expand Down

0 comments on commit e09b768

Please sign in to comment.