Joseph Perez

Results 165 comments of Joseph Perez

According to https://github.com/dtolnay/anyhow/issues/85, using `format!("{err:#}")` instead of `err.to_string()` prints the whole context. ``` let err = anyhow::format_err!("root_cause") .context("inner_context") .context("outer_context"); assert_eq!( format!("{:#}", err), "outer_context: inner_context: root_cause" ); ```

I forgot to add that `math.Pow(frac, float64(int(1)

@OlivierHecart Should we close the issue then?