comparison: Utilities/ModuleParser.py
Utilities/ModuleParser.py
- branch
- 5_3_x
- changeset 2924
- 66c644db24f4
- parent 2399
- aeb4423cf6aa
- child 3163
- 9f50365a0870
equal
deleted
inserted
replaced
87 \#\#\# |
87 \#\#\# |
88 ) |
88 ) |
89 |
89 |
90 | (?P<Docstring> |
90 | (?P<Docstring> |
91 (?<= :) \s* |
91 (?<= :) \s* |
92 \""" (?P<DocstringContents1> |
92 [ru]? \""" (?P<DocstringContents1> |
93 [^"\\]* (?: |
93 [^"\\]* (?: |
94 (?: \\. | "(?!"") ) |
94 (?: \\. | "(?!"") ) |
95 [^"\\]* |
95 [^"\\]* |
96 )* |
96 )* |
97 ) |
97 ) |
98 \""" |
98 \""" |
99 |
99 |
100 | (?<= :) \s* |
100 | (?<= :) \s* |
101 ''' (?P<DocstringContents2> |
101 [ru]? ''' (?P<DocstringContents2> |
102 [^'\\]* (?: |
102 [^'\\]* (?: |
103 (?: \\. | '(?!'') ) |
103 (?: \\. | '(?!'') ) |
104 [^'\\]* |
104 [^'\\]* |
105 )* |
105 )* |
106 ) |
106 ) |