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 22
22
:func:`~domdf_python_tools.iterative.Len`, and
23
23
:func:`~domdf_python_tools.iterative.double_chain`
24
24
moved to :func:`domdf_python_tools.iterative`.
25
-
26
25
They can still be imported from here until version 2.0.0, but that use is deprecated.
27
26
"""
28
27
#
@@ -256,6 +255,8 @@ def posargs2kwargs(
256
255
"""
257
256
Convert the positional args in ``args`` to kwargs, based on the relative order of ``args`` and ``posarg_names``.
258
257
258
+ .. important:: Python 3.8's Positional-Only Parameters (:pep:`570`) are not supported.
259
+
259
260
:param args: List of positional arguments provided to a function.
260
261
:param posarg_names: Either a list of positional argument names for the function, or the function object.
261
262
:param kwargs: Optional mapping of keyword argument names to values.
@@ -265,8 +266,6 @@ def posargs2kwargs(
265
266
:return: Dictionary mapping argument names to values.
266
267
267
268
.. versionadded:: 0.4.10
268
-
269
- .. info:: Python 3.8's Positional-Only Parameters (:pep:`570`) are not supported.
270
269
"""
271
270
272
271
if kwargs is None :
You can’t perform that action at this time.
0 commit comments