File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def __init__(
128
128
129
129
# Precompile a regular expression used to extract types from 'types.*'
130
130
self .types_re = re .compile (
131
- sep_before + r"(ModuleType|CapsuleType|NoneType| EllipsisType)\b"
131
+ sep_before + r"(ModuleType|CapsuleType|EllipsisType)\b"
132
132
)
133
133
134
134
# Precompile a regular expression used to extract nanobind nd-arrays
@@ -137,6 +137,7 @@ def __init__(
137
137
)
138
138
139
139
# Regular expression matching `builtins.*` types
140
+ self .none_re = re .compile (sep_before + r"builtins\.(None)Type\b" )
140
141
self .builtins_re = re .compile (sep_before + r"builtins\.(" + identifier + ")" )
141
142
142
143
# Precompile a regular expression used to extract a few other types
@@ -370,6 +371,7 @@ def replace_standard_types(self, s):
370
371
s = self .module_member_re .sub (lambda m : m .group (1 ), s )
371
372
372
373
# Remove 'builtins.*'
374
+ s = self .none_re .sub (lambda m : m .group (1 ), s )
373
375
s = self .builtins_re .sub (lambda m : m .group (1 ), s )
374
376
375
377
# tuple[] is not a valid type annotation
You can’t perform that action at this time.
0 commit comments