File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1095,8 +1095,8 @@ impl Compiler {
10951095 self . store_name ( name. as_ref ( ) ) ?;
10961096 }
10971097 }
1098- located_ast:: TypeParam :: ParamSpec ( _) => todo ! ( ) ,
1099- located_ast:: TypeParam :: TypeVarTuple ( _) => todo ! ( ) ,
1098+ located_ast:: TypeParam :: ParamSpec ( _) => todo ! ( "implement Compiler::compile_type_params for TypeParam::ParamSpec" ) ,
1099+ located_ast:: TypeParam :: TypeVarTuple ( _) => todo ! ( "implement Compiler::compile_type_params for TypeParam::TypeVarTuple" ) ,
11001100 } ;
11011101 }
11021102 emit ! (
Original file line number Diff line number Diff line change @@ -1257,8 +1257,8 @@ impl SymbolTableBuilder {
12571257 self . scan_expression ( binding, ExpressionContext :: Load ) ?;
12581258 }
12591259 }
1260- ast:: located:: TypeParam :: ParamSpec ( _) => todo ! ( ) ,
1261- ast:: located:: TypeParam :: TypeVarTuple ( _) => todo ! ( ) ,
1260+ ast:: located:: TypeParam :: ParamSpec ( _) => todo ! ( "implement SymbolTableBuilder::scan_type_params TypeParam:::ParamSpec" ) ,
1261+ ast:: located:: TypeParam :: TypeVarTuple ( _) => todo ! ( "implement SymbolTableBuilder::scan_type_params TypeParam:::TypeVarTuple" ) ,
12621262 }
12631263 }
12641264 Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -433,8 +433,8 @@ mod _csv {
433433 QuoteStyle :: All => csv_core:: QuoteStyle :: Always ,
434434 QuoteStyle :: Nonnumeric => csv_core:: QuoteStyle :: NonNumeric ,
435435 QuoteStyle :: None => csv_core:: QuoteStyle :: Never ,
436- QuoteStyle :: Strings => todo ! ( ) ,
437- QuoteStyle :: Notnull => todo ! ( ) ,
436+ QuoteStyle :: Strings => todo ! ( "implement From<QuoteStyle> for csv_core::QuoteStyle::Strings" ) ,
437+ QuoteStyle :: Notnull => todo ! ( "implement From<QuoteStyle> for csv_core::QuoteStyle::Notnull" ) ,
438438 }
439439 }
440440 }
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ impl PyPayload for PyBool {
8888
8989impl Debug for PyBool {
9090 fn fmt ( & self , _f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
91- todo ! ( )
91+ todo ! ( "implement Debug::fmt for PyBool" )
9292 }
9393}
9494
You can’t perform that action at this time.
0 commit comments