8000 + allow _Complex specifier before float/double/etc · python/cpython@6755905 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6755905

Browse files
committed
+ allow _Complex specifier before float/double/etc
1 parent af2fdce commit 6755905

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Tools/c-analyzer/c_parser/parser/_regexes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ def _ind(text, level=1, edges='both'):
127127
_Complex
128128
)
129129
|
130+
(?:
131+
_Complex
132+
(? \s+ (?: float | double | long\s+double ) )?
133+
)
130134
(?:
131135
(?: (?: signed | unsigned ) \s+ )?
132136
(?: (?: long | short ) \s+ )?

0 commit comments

Comments
 (0)
0