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 4fb69ea commit 3ee255dCopy full SHA for 3ee255d
python_files/pythonrc.py
@@ -5,7 +5,6 @@
5
import readline
6
7
original_ps1 = ">>> "
8
-use_shell_integration = sys.version_info < (3, 13)
9
is_wsl = "microsoft-standard-WSL" in platform.release()
10
11
@@ -75,7 +74,7 @@ def __str__(self):
75
74
return result
76
77
78
-if sys.platform != "win32" and (not is_wsl) and use_shell_integration:
+if sys.platform != "win32" and (not is_wsl):
79
sys.ps1 = PS1()
80
81
if sys.platform == "darwin":
0 commit comments