diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2021-08-23 20:36:48 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-23 20:36:48 -0300 |
| commit | aa3c3a9ebbc096bba9eda324b91acbb7f14a7b07 (patch) | |
| tree | 5db9dc95f2d2d552a52349bd22578032727d682d /doc/tools | |
| parent | 0df9895eb755dba7ec9bd764c36fa873175bc256 (diff) | |
| parent | 44d62a9f4b6ac892b1fb9b8998be4162409952e3 (diff) | |
| download | redot-engine-aa3c3a9ebbc096bba9eda324b91acbb7f14a7b07.tar.gz | |
Merge pull request #52036 from reduz/native-extension-argument-pointers
Implement NativeExtension pointer arguments
Diffstat (limited to 'doc/tools')
| -rwxr-xr-x | doc/tools/makerst.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index 4691b61e1b..a23324fd24 100755 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -1007,6 +1007,8 @@ def format_table(f, data, remove_empty_columns=False): # type: (TextIO, Iterabl def make_type(klass, state): # type: (str, State) -> str + if klass.find("*") != -1: # Pointer, ignore + return klass link_type = klass if link_type.endswith("[]"): # Typed array, strip [] to link to contained type. link_type = link_type[:-2] |
