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 ab96b18 commit c4f27d2Copy full SHA for c4f27d2
python/pythonmonkey/cli/pmjs.py
@@ -4,10 +4,7 @@
4
# @date June 2023
5
6
import sys, os, signal, getopt
7
-try:
8
- import readline # Unix
9
-except ImportError:
10
- import pyreadline3 as readline # Windows
+import readline
11
import pythonmonkey as pm
12
globalThis = pm.eval("globalThis")
13
evalOpts = { 'filename': __file__, 'fromPythonFrame': True, 'strict': False } # type: pm.EvalOptions
0 commit comments