@@ -3289,10 +3289,10 @@ impl ExcepthandlerExceptHandler {
32893289
32903290#[ pyclass( module="rustpython_ast.located" , name="_arguments" , extends=super :: Ast , frozen) ]
32913291#[ derive( Clone , Debug ) ]
3292- pub struct Arguments ( pub & ' static ast:: Arguments < SourceRange > ) ;
3292+ pub struct Arguments ( pub & ' static ast:: PythonArguments < SourceRange > ) ;
32933293
3294- impl From < & ' static ast:: Arguments < SourceRange > > for Arguments {
3295- fn from ( node : & ' static ast:: Arguments < SourceRange > ) -> Self {
3294+ impl From < & ' static ast:: PythonArguments < SourceRange > > for Arguments {
3295+ fn from ( node : & ' static ast:: PythonArguments < SourceRange > ) -> Self {
32963296 Arguments ( node)
32973297 }
32983298}
@@ -3304,7 +3304,7 @@ impl ToPyObject for Arguments {
33043304 }
33053305}
33063306
3307- impl ToPyWrapper for ast:: Arguments < SourceRange > {
3307+ impl ToPyWrapper for ast:: PythonArguments < SourceRange > {
33083308 #[ inline]
33093309 fn to_py_wrapper ( & ' static self , py : Python ) -> PyResult < Py < PyAny > > {
33103310 Ok ( Arguments ( self ) . to_object ( py) )
@@ -4392,7 +4392,7 @@ pub fn add_to_module(py: Python, m: &PyModule) -> PyResult<()> {
43924392 super :: init_type :: < Comprehension , ast:: Comprehension > ( py, m) ?;
43934393 super :: init_type :: < Excepthandler , ast:: Excepthandler > ( py, m) ?;
43944394 super :: init_type :: < ExcepthandlerExceptHandler , ast:: ExcepthandlerExceptHandler > ( py, m) ?;
4395- super :: init_type :: < Arguments , ast:: Arguments > ( py, m) ?;
4395+ super :: init_type :: < Arguments , ast:: PythonArguments > ( py, m) ?;
43964396 super :: init_type :: < Arg , ast:: Arg > ( py, m) ?;
43974397 super :: init_type :: < Keyword , ast:: Keyword > ( py, m) ?;
43984398 super :: init_type :: < Alias , ast:: Alias > ( py, m) ?;
0 commit comments