fix(lexer): token location bug

This commit is contained in:
Shunsuke Shibayama 2024-01-27 01:32:49 +09:00
parent ddefa6185e
commit 910d5f62e9
2 changed files with 68 additions and 64 deletions

View file

@ -2907,6 +2907,7 @@ impl NestedDisplay for ConstKwArg {
}
}
impl_display_from_nested!(ConstKwArg);
impl_locational!(ConstKwArg, keyword, expr);
#[pymethods]