<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Sat, Nov 25, 2017 at 7:21 AM Marten van Kerkwijk <<a href="mailto:m.h.vankerkwijk@gmail.com">m.h.vankerkwijk@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">A question of perhaps broader scope than what you were asking for, and<br>
more out of curiosity than anything else, but can one mix type<br>
annotations with others? E.g., in astropy, we have a decorator that<br>
looks for units in the annotations (not dissimilar from dtype, I<br>
guess). Could one mix annotations or does one have to stick with one<br>
purpose?<br></blockquote><div><br></div><div>Hi Marten,</div><div><br></div><div>I took a look at Astropy's units decorator:</div><div><a href="http://docs.astropy.org/en/stable/api/astropy.units.quantity_input.html">http://docs.astropy.org/en/stable/api/astropy.units.quantity_input.html</a></div><div><br></div><div>Annotations for return values that "coerce" units would be hard to make compatible with typing, because type annotations are used to check programs, not change runtime semantics. But in principle, I think you could even make a physical units library that relies entirely on static type checking for correctness, imposing almost no run-time overhead at all. There are several examples for Haskell:<br></div><div><a href="https://wiki.haskell.org/Physical_units">https://wiki.haskell.org/Physical_units</a><br></div><div><br></div><div>I don't see any obvious way to support to mixing of annotations for typing and runtime effects in the same function, though doing so in the same program might be possible. My guess is that the preferred way to do this would be to use decorators for runtime changes to arguments, and keep annotations for typing. The Python community seems to be standardizing on using annotations for typing:</div><div><a href="https://www.python.org/dev/peps/pep-0563/#non-typing-usage-of-annotations">https://www.python.org/dev/peps/pep-0563/#non-typing-usage-of-annotations</a><br></div><div><br></div><div>Cheers,</div><div>Stephan</div></div></div>