Skip to content

Commit 9289b00

Browse files
authored
Add lru_cache wrapper in docstring parsing (#252)
Signed-off-by: Fabrice Normandin <[email protected]>
1 parent 4b9c022 commit 9289b00

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

simple_parsing/docstring.py

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
from __future__ import annotations
55

6+
import functools
67
import inspect
78
from dataclasses import dataclass
89
from logging import getLogger
@@ -95,6 +96,7 @@ def get_attribute_docstring(
9596
return created_docstring
9697

9798

99+
@functools.lru_cache(2048)
98100
def _get_attribute_docstring(dataclass: type, field_name: str) -> AttributeDocString | None:
99101
"""Gets the AttributeDocString of the given field in the given dataclass.
100102
Doesn't inspect base classes.

0 commit comments

Comments
 (0)