We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58af424 commit 07390b4Copy full SHA for 07390b4
generate_stubs.py
@@ -25,8 +25,8 @@
25
METHOD_RE = regex.compile(r'\(method-.*\)=\n#+ ?(.*\(.*\))')
26
CONSTANT_RE = regex.compile(r'\(constant-.*\)=\n#+ ?(.*)')
27
ATTRIBUTE_RE = regex.compile(r'\(attribute-.*\)=\n#+ ?(.*)')
28
-IN_PLACE_OPERATOR_RE = regex.compile(r'- `.*`. May be implemented via `__i(.*)__`.')
29
-REFLECTED_OPERATOR_RE = regex.compile(r'- `__r(.*)__`')
+IN_PLACE_OPERATOR_RE = regex.compile(r'- +`.*`. May be implemented via `__i(.*)__`.')
+REFLECTED_OPERATOR_RE = regex.compile(r'- +`__r(.*)__`')
30
ALIAS_RE = regex.compile(r'Alias for {ref}`function-(.*)`.')
31
32
NAME_RE = regex.compile(r'(.*?)\(.*\)')
0 commit comments