Static Public Attributes
xdot.DotScanner Class Reference
Inheritance diagram for xdot.DotScanner:
Inheritance graph
[legend]

List of all members.

Static Public Attributes

list tokens

Detailed Description

Definition at line 857 of file xdot.py.


Member Data Documentation

list xdot.DotScanner::tokens [static]
Initial value:
[
        # whitespace and comments
        (SKIP,
            r'[ \t\f\r\n\v]+|'
            r'//[^\r\n]*|'
            r'/\*.*?\*/|'
            r'#[^\r\n]*',
        False),

        # Alphanumeric IDs
        (ID, r'[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*', True),

        # Numeric IDs
        (ID, r'-?(?:\.[0-9]+|[0-9]+(?:\.[0-9]*)?)', False),

        # String IDs
        (STR_ID, r'"[^"\\]

Reimplemented from xdot.Scanner.

Definition at line 860 of file xdot.py.


The documentation for this class was generated from the following file:


cob_script_server
Author(s): Florian Weisshardt
autogenerated on Thu Aug 27 2015 12:42:55