Merge pull request #3537 from fanninpm/itertools-combinations

Allow kwargs in itertools.combinations() signature
This commit is contained in:
Jeong YunWon
2022-02-06 12:04:19 +09:00
committed by GitHub

View File

@@ -1163,9 +1163,9 @@ mod decl {
#[derive(FromArgs)]
struct CombinationsNewArgs {
#[pyarg(positional)]
#[pyarg(any)]
iterable: PyObjectRef,
#[pyarg(positional)]
#[pyarg(any)]
r: PyIntRef,
}