@@ -651,7 +651,7 @@ mod sys {
651651/// sys.flags
652652///
653653/// Flags provided through command line arguments or environment vars.
654- #[ pyclass( noattr , name ="flags" , module ="sys" ) ]
654+ #[ pyclass( no_attr , name ="flags" , module ="sys" ) ]
655655#[ derive( Debug , PyStructSequence ) ]
656656pub ( super ) struct Flags {
657657/// -d
@@ -718,7 +718,7 @@ mod sys {
718718}
719719
720720#[ cfg( feature ="threading" ) ]
721- #[ pyclass( noattr , name ="thread_info" ) ]
721+ #[ pyclass( no_attr , name ="thread_info" ) ]
722722#[ derive( PyStructSequence ) ]
723723pub ( super ) struct PyThreadInfo {
724724name : Option < & ' static str > ,
@@ -738,7 +738,7 @@ mod sys {
738738} ;
739739}
740740
741- #[ pyclass( noattr , name ="float_info" ) ]
741+ #[ pyclass( no_attr , name ="float_info" ) ]
742742#[ derive( PyStructSequence ) ]
743743pub ( super ) struct PyFloatInfo {
744744max : f64 ,
@@ -771,7 +771,7 @@ mod sys {
771771} ;
772772}
773773
774- #[ pyclass( noattr , name ="hash_info" ) ]
774+ #[ pyclass( no_attr , name ="hash_info" ) ]
775775#[ derive( PyStructSequence ) ]
776776pub ( super ) struct PyHashInfo {
777777width : usize ,
@@ -803,7 +803,7 @@ mod sys {
803803} ;
804804}
805805
806- #[ pyclass( noattr , name ="int_info" ) ]
806+ #[ pyclass( no_attr , name ="int_info" ) ]
807807#[ derive( PyStructSequence ) ]
808808pub ( super ) struct PyIntInfo {
809809bits_per_digit : usize ,
@@ -818,7 +818,7 @@ mod sys {
818818} ;
819819}
820820
821- #[ pyclass( noattr , name ="version_info" ) ]
821+ #[ pyclass( no_attr , name ="version_info" ) ]
822822#[ derive( Default , Debug , PyStructSequence ) ]
823823pub struct VersionInfo {
824824major : usize ,
@@ -848,7 +848,7 @@ mod sys {
848848}
849849
850850#[ cfg( windows) ]
851- #[ pyclass( noattr , name ="getwindowsversion" ) ]
851+ #[ pyclass( no_attr , name ="getwindowsversion" ) ]
852852#[ derive( Default , Debug , PyStructSequence ) ]
853853pub ( super ) struct WindowsVersion {
854854major : u32 ,
@@ -867,7 +867,7 @@ mod sys {
867867#[ pyclass( with( PyStructSequence ) ) ]
868868impl WindowsVersion { }
869869
870- #[ pyclass( noattr , name ="UnraisableHookArgs" ) ]
870+ #[ pyclass( no_attr , name ="UnraisableHookArgs" ) ]
871871#[ derive( Debug , PyStructSequence , TryIntoPyStructSequence ) ]
872872pub struct UnraisableHookArgs {
873873pub exc_type : PyTypeRef ,