You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix) Prevent keyboard interrupt for Python3.13 REPL non-Windows (#24555)
Further resolves:
#24422
Prevent keyboard interrupt for Mac and Linux when using Python3.13
Having Python3.13 as interpreter choice and then enabling shell
integration where it is normally supported (we disabled temporarily for
Python3.13 due to python/cpython#126131), lead
to edge case.
So although we don't override user's PS1 in Python side after checking
Python3.13 is selected, we were not aware of this in typescript side,
leading to wrongly using executeCommand inside Python terminal REPL
(Python3.13 IDLE), instead of sendText.
test('Ensure sendText is NOT called when Python shell integration and terminal shell integration are both enabled - Mac, Linux',async()=>{
246
+
test('Ensure sendText is NOT called when Python shell integration and terminal shell integration are both enabled - Mac, Linux - !Python3.13',async()=>{
0 commit comments