Changed escape char for CMDSHELL and wildcard processing to use " instead of #
1 parent 2c986df commit c82dc1d0c33f8abc6d3c4fa0ff2a346eb085a3e6
@tundra tundra authored on 28 Feb 2003
Showing 1 changed file
View
9
twander.py
 
# Program Information
 
PROGNAME = "twander"
RCSID = "$Id: twander.py,v 3.112 2003/02/28 19:46:26 tundra Exp $"
RCSID = "$Id: twander.py,v 3.113 2003/02/28 20:05:18 tundra Exp $"
VERSION = RCSID.split()[2]
 
# Copyright Information
 
 
#####
# Symbolic Constants Needed Below
#####
 
CMDSHELLESC = '#'
 
#####
# Defaults
#####
#####
 
# General Constants
 
 
CMDESCAPE = '"' # Character to force literal dialog processing
CMDSHELLESC = CMDESCAPE # Disable CMDSHELL processing for a manual command entry
KB = 1024 # 1 KB constant
MB = KB * KB # 1 MB constant
GB = MB * KB # 1 GB constant
NUMFUNCKEY = 12 # Number of function keys
NUMPROGMEM = 12 # Number of program memories
POLLINT = 20 # Interval (ms) the poll routine should run
PSEP = os.sep # Character separating path components
SHOWDRIVES = '\\\\' # Logical directory name for Win32 Drive Lists
STRICTMATCH = '#' # Tells wildcard system to enforce strict matching
STRICTMATCH = CMDESCAPE # Tells wildcard system to enforce strict matching
 
# Sort Field Names
 
fNONE = "None"