Package pysynphot :: Module spparser :: Class BaseScanner
[hide private]
[frames] | no frames]

Class BaseScanner

source code


Instance Methods [hide private]
 
__init__(self) source code
 
tokenize(self, input) source code
 
t_whitespace(self, s)
\s+
source code
 
t_op(self, s)
\+ | \* | -
source code
 
t_lparens(self, s)
\(
source code
 
t_rparens(self, s)
\)
source code
 
t_comma(self, s)
,
source code
 
t_integer(self, s)
\d+
source code
 
t_identifier(self, s)
[a-z_A-Z/\//][\w/\.\$]*
source code
 
t_filelist(self, s)
@\w+
source code

Inherited from spark.GenericScanner: error, makeRE, reflect, t_default

Method Details [hide private]

__init__(self)
(Constructor)

source code 
Overrides: spark.GenericScanner.__init__

tokenize(self, input)

source code 
Overrides: spark.GenericScanner.tokenize