File tree 4 files changed +19
-7
lines changed
4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -1095,8 +1095,12 @@ impl Compiler {
1095
1095
self . store_name ( name. as_ref ( ) ) ?;
1096
1096
}
1097
1097
}
1098
- located_ast:: TypeParam :: ParamSpec ( _) => todo ! ( ) ,
1099
- located_ast:: TypeParam :: TypeVarTuple ( _) => todo ! ( ) ,
1098
+ located_ast:: TypeParam :: ParamSpec ( _) => {
1099
+ todo ! ( "implement Compiler::compile_type_params for TypeParam::ParamSpec" )
1100
+ }
1101
+ located_ast:: TypeParam :: TypeVarTuple ( _) => {
1102
+ todo ! ( "implement Compiler::compile_type_params for TypeParam::TypeVarTuple" )
1103
+ }
1100
1104
} ;
1101
1105
}
1102
1106
emit ! (
Original file line number Diff line number Diff line change @@ -1257,8 +1257,12 @@ impl SymbolTableBuilder {
1257
1257
self . scan_expression ( binding, ExpressionContext :: Load ) ?;
1258
1258
}
1259
1259
}
1260
- ast:: located:: TypeParam :: ParamSpec ( _) => todo ! ( ) ,
1261
- ast:: located:: TypeParam :: TypeVarTuple ( _) => todo ! ( ) ,
1260
+ ast:: located:: TypeParam :: ParamSpec ( _) => {
1261
+ todo ! ( "implement SymbolTableBuilder::scan_type_params TypeParam:::ParamSpec" )
1262
+ }
1263
+ ast:: located:: TypeParam :: TypeVarTuple ( _) => {
1264
+ todo ! ( "implement SymbolTableBuilder::scan_type_params TypeParam:::TypeVarTuple" )
1265
+ }
1262
1266
}
1263
1267
}
1264
1268
Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -433,8 +433,12 @@ mod _csv {
433
433
QuoteStyle :: All => csv_core:: QuoteStyle :: Always ,
434
434
QuoteStyle :: Nonnumeric => csv_core:: QuoteStyle :: NonNumeric ,
435
435
QuoteStyle :: None => csv_core:: QuoteStyle :: Never ,
436
- QuoteStyle :: Strings => todo ! ( ) ,
437
- QuoteStyle :: Notnull => todo ! ( ) ,
436
+ QuoteStyle :: Strings => {
437
+ todo ! ( "implement From<QuoteStyle> for csv_core::QuoteStyle::Strings" )
438
+ }
439
+ QuoteStyle :: Notnull => {
440
+ todo ! ( "implement From<QuoteStyle> for csv_core::QuoteStyle::Notnull" )
441
+ }
438
442
}
439
443
}
440
444
}
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ impl PyPayload for PyBool {
88
88
89
89
impl Debug for PyBool {
90
90
fn fmt ( & self , _f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
91
- todo ! ( )
91
+ todo ! ( "implement Debug::fmt for PyBool" )
92
92
}
93
93
}
94
94
You can’t perform that action at this time.
0 commit comments