montmorillonite
montmorillonite
Could we just change `chempy/chemistry.py#L577` from ```py if v != type(v)(int(v)): ``` to ```py if v != int(v) and v != type(v)(int(v)): ``` It does work.
Here are my options: - `input!` marco forwards its args to `print!`, flushs, does `read_line` and returns the result of `FromStr::from_str`. ```rust macro_rules! input { ($($arg:tt)*) => { use std::{io,...
How can I have a non-greedy verison of a parser such as `many0`? It been 4years since the issues opened and I wander if there is a solution in nowadays...