Thanks to visit codestin.com Credit goes to github.com
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 e49dd4c commit b976419Copy full SHA for b976419
1 file changed
Lib/idlelib/PyShell.py
@@ -28,6 +28,8 @@
28
import rpc
29
import RemoteDebugger
30
31
+IDENTCHARS = string.ascii_letters + string.digits + "_"
32
+
33
# XX hardwire this for now, remove later KBK 09Jun02
34
use_subprocess = 1 # Set to 1 to spawn subprocess for command execution
35
@@ -313,8 +315,6 @@ def stuffsource(self, source):
313
315
linecache.cache[filename] = len(source)+1, 0, lines, filename
314
316
return filename
317
- IDENTCHARS = string.ascii_letters + string.digits + "_"
-
318
def showsyntaxerror(self, filename=None):
319
"""Extend base class method: Add Colorizing
320
0 commit comments