[Idle-dev] CVS: idle PyShell.py,1.26,1.27

Kurt B. Kaiser kbk@users.sourceforge.net
Sun, 22 Sep 2002 21:10:40 -0700


Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv13953

Modified Files:
	PyShell.py 
Log Message:
Fix bug I created during merge from Python-idle.

Also, decided IDENTCHARS is better as global, after all.


Index: PyShell.py
===================================================================
RCS file: /cvsroot/idlefork/idle/PyShell.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** PyShell.py	18 Sep 2002 17:07:05 -0000	1.26
--- PyShell.py	23 Sep 2002 04:10:37 -0000	1.27
***************
*** 29,32 ****
--- 29,34 ----
  import RemoteDebugger
  
+ IDENTCHARS = string.ascii_letters + string.digits + "_"
+ 
  # XX hardwire this for now, remove later  KBK 09Jun02
  use_subprocess = 1 # Set to 1 to spawn subprocess for command execution
***************
*** 313,318 ****
          linecache.cache[filename] = len(source)+1, 0, lines, filename
          return filename
-     
-     IDENTCHARS = string.ascii_letters + string.digits + "_"
      
      def showsyntaxerror(self, filename=None):
--- 315,318 ----