diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2020-05-05 08:50:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-05 08:50:22 -0700 |
| commit | f40db45009aa39ecc46b800ec18a23173bd17ac0 (patch) | |
| tree | a5b9a0e9dfecb746e16762f8919cce860b940058 /docs | |
| parent | dd216b6cad454c27973439887266170f09b6e0a8 (diff) | |
| parent | e1366d78b125f0aca7d9f2e6faa55d3b0adf2e83 (diff) | |
Merge pull request #2799 from dhalbert/ringbuf-fixes
Ringbuf: fix PacketBuffer; clean up ringbuf implementation and use
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/shared_bindings_matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/shared_bindings_matrix.py b/docs/shared_bindings_matrix.py index d5f838f75..aa5ef02e2 100644 --- a/docs/shared_bindings_matrix.py +++ b/docs/shared_bindings_matrix.py @@ -98,7 +98,7 @@ def build_module_map(): for module in modules: full_name = module search_name = module.lstrip("_") - re_pattern = "CIRCUITPY_{}\s=\s(.+)".format(search_name.upper()) + re_pattern = "CIRCUITPY_{}\s*\??=\s*(.+)".format(search_name.upper()) find_config = re.findall(re_pattern, configs) if not find_config: continue |
