File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments