6262__author__ : str = "Dominic Davis-Foster"
6363__copyright__ : str = "2021 Dominic Davis-Foster"
6464__license__ : str = "MIT License"
65- __version__ : str = "0.3.0 "
65+ __version__ : str = "0.3.1 "
6666__email__ : str = "dominic@davis-foster.co.uk"
6767
6868__all__ = [
@@ -179,7 +179,7 @@ def kwargs_from_node(
179179 """
180180 Returns a mapping of argument names to the AST nodes representing their values, for the given function call.
181181
182- .. versionadded:: 0.3.0
182+ .. versionadded:: 0.3.1
183183
184184 :param node:
185185 :param posarg_names: Either a list of positional argument names for the function, or the function object.
@@ -201,7 +201,7 @@ def get_attribute_name(node: ast.AST) -> Iterable[str]:
201201 """
202202 Returns the elements of the dotted attribute name for the given AST node.
203203
204- .. versionadded:: 0.3.0
204+ .. versionadded:: 0.3.1
205205
206206 :param node:
207207
@@ -224,7 +224,7 @@ def get_contextmanagers(with_node: ast.With) -> Dict[Tuple[str, ...], ast.withit
224224 """
225225 For the given ``with`` block, returns a mapping of the contextmanager names to the individual nodes.
226226
227- .. versionadded:: 0.3.0
227+ .. versionadded:: 0.3.1
228228
229229 :param with_node:
230230 """
@@ -245,7 +245,7 @@ def get_constants(module: ast.Module) -> Dict[str, Any]:
245245 """
246246 Returns a ``name: value`` mapping of constants in the given module.
247247
248- .. versionadded:: 0.3.0
248+ .. versionadded:: 0.3.1
249249
250250 :param module:
251251 """
0 commit comments