Guibou
Guibou
Rust does pretty printing / debug with `#?`.
Context: https://gitlab.haskell.org/ghc/ghc/-/issues/21033
Hi @Profpatsch, thank you for this issue (and sorry for my silence). I will have a look. Right now you need to make instances for a few classes / type...
Hello @konsumlamm, thank you for this issue. AFAIK, `:s` is implicitly documented by the python documentation (after all, it means "format as string"). But you are right, more documentation would...
~~And actually, in python, and maybe that's a good thing, formatting any object with `s` fails if the object does not have an `__str__` instance. Well, I'm unsure about the...
Edit: Actually, I may be able to do something, at the cost of a code simplification, a little bit less magic and more power.
Hey, that's super interesting. Thank you for the report and sorry for the delay (I kinda missed the notification). I had a look and to be honest it is unclear...
Actually it onl works if the padding value is 0.
This is super weird actually ;) In python, the semantic is interesting: ``` >>> f"{0:~=#10_b}" '0b~~~~~~~0' >>> f"{0:0=#10_b}" '0b000_0000' ```
Hello. I do apologize for the time it takes to answer. That's a good question. In python: ```python >>> f"hello {[1,2]}" 'hello [1, 2]' ``` In PyF, you can use...