adsharma

Results 211 comments of adsharma

Fixed by https://github.com/adsharma/Typpete/commit/a6a406f007b44e7faefebc4108b042fd6612f98a

Isn't this a dup of #67

This is of interest to py2many, a python -> rust transpiler (apart from 6 other languages). https://github.com/adsharma/py2many/issues/62

It's a sharp knife - just like `ifdef` in C. What's the argument against breaking that line/stanza into it's own test which doesn't have an expected result for $lang (i.e....

name=py2many version=pypi-version?

Ah I see what you're asking: we could include target=rust as well.

It makes sense to move `smt` to a different class of backends vs the others. If you try to make the files valid python, you end up with `sympy` with...

Can you write: ``` def asdf(a:i32, b:i32)->u32: x:u32 = a**b return x ```

Yes, argparse -> structopt is a useful initial attempt that could help people writing quick python CLIs and getting a native binary out of it easily. Having said that I'm...

This is not of much help for existing code, but for new code, I find this more appealing: https://github.com/mivade/argparse_dataclass/blob/master/tests/example.py ``` from argparse_dataclass import dataclass @dataclass class Opt: x: int =...