We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b9c022 commit 9289b00Copy full SHA for 9289b00
simple_parsing/docstring.py
@@ -3,6 +3,7 @@
3
"""
4
from __future__ import annotations
5
6
+import functools
7
import inspect
8
from dataclasses import dataclass
9
from logging import getLogger
@@ -95,6 +96,7 @@ def get_attribute_docstring(
95
96
return created_docstring
97
98
99
+@functools.lru_cache(2048)
100
def _get_attribute_docstring(dataclass: type, field_name: str) -> AttributeDocString | None:
101
"""Gets the AttributeDocString of the given field in the given dataclass.
102
Doesn't inspect base classes.
0 commit comments