comparison: Utilities/ModuleParser.py
Utilities/ModuleParser.py
- branch
- Py2 comp.
- changeset 3056
- 9986ec0e559a
- parent 2791
- a9577f248f04
- parent 2922
- 16905f0f48be
- child 3057
- 10516539f238
equal
deleted
inserted
replaced
89 \#\#\# |
89 \#\#\# |
90 ) |
90 ) |
91 |
91 |
92 | (?P<Docstring> |
92 | (?P<Docstring> |
93 (?<= :) \s* |
93 (?<= :) \s* |
94 \""" (?P<DocstringContents1> |
94 [ru]? \""" (?P<DocstringContents1> |
95 [^"\\]* (?: |
95 [^"\\]* (?: |
96 (?: \\. | "(?!"") ) |
96 (?: \\. | "(?!"") ) |
97 [^"\\]* |
97 [^"\\]* |
98 )* |
98 )* |
99 ) |
99 ) |
100 \""" |
100 \""" |
101 |
101 |
102 | (?<= :) \s* |
102 | (?<= :) \s* |
103 ''' (?P<DocstringContents2> |
103 [ru]? ''' (?P<DocstringContents2> |
104 [^'\\]* (?: |
104 [^'\\]* (?: |
105 (?: \\. | '(?!'') ) |
105 (?: \\. | '(?!'') ) |
106 [^'\\]* |
106 [^'\\]* |
107 )* |
107 )* |
108 ) |
108 ) |