Skip to content

Commit db462a5

Browse files
committed
Updated docs for utils.
1 parent 74038e8 commit db462a5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

domdf_python_tools/utils.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
:func:`~domdf_python_tools.iterative.Len`, and
2323
:func:`~domdf_python_tools.iterative.double_chain`
2424
moved to :func:`domdf_python_tools.iterative`.
25-
2625
They can still be imported from here until version 2.0.0, but that use is deprecated.
2726
"""
2827
#
@@ -256,6 +255,8 @@ def posargs2kwargs(
256255
"""
257256
Convert the positional args in ``args`` to kwargs, based on the relative order of ``args`` and ``posarg_names``.
258257
258+
.. important:: Python 3.8's Positional-Only Parameters (:pep:`570`) are not supported.
259+
259260
:param args: List of positional arguments provided to a function.
260261
:param posarg_names: Either a list of positional argument names for the function, or the function object.
261262
:param kwargs: Optional mapping of keyword argument names to values.
@@ -265,8 +266,6 @@ def posargs2kwargs(
265266
:return: Dictionary mapping argument names to values.
266267
267268
.. versionadded:: 0.4.10
268-
269-
.. info:: Python 3.8's Positional-Only Parameters (:pep:`570`) are not supported.
270269
"""
271270

272271
if kwargs is None:

0 commit comments

Comments
 (0)