aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--sec_certs/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sec_certs/helpers.py b/sec_certs/helpers.py
index 01729891..9558aa88 100644
--- a/sec_certs/helpers.py
+++ b/sec_certs/helpers.py
@@ -118,7 +118,7 @@ def parse_list_of_tables(txt: str) -> Set[str]:
:param txt: chunk of text
:return: set of all pages mentioning algorithm table
"""
- rr = re.compile(r"^.+?(?:[Ff]unction|[Aa]lgorithm).+?(?P<page_num>\d+)$", re.MULTILINE)
+ rr = re.compile(r"^.+?(?:[Ff]unction|[Aa]lgorithm|[Ss]ecurity [Ff]unctions?).+?(?P<page_num>\d+)$", re.MULTILINE)
pages = set()
for m in rr.finditer(txt):
pages.add(m.group('page_num'))