Stefan Richthofer

Results 228 comments of Stefan Richthofer

Regarding this article http://wphomes.soic.indiana.edu/jsiek/what-is-gradual-typing/, what would ``?`` be? ``Any`` or ``T``? I'm not sure I ever considered unbound type variables as an explicitly valid use case for ``is_subtype``. I think...

If you like, write a PR for this. It shouldn't be too difficult, would safe me some work and you would be appropriately credited in the project history. Otherwise I'll...

Regarding pickling, maybe a solution by pytypes on this front is [``type_str``](https://github.com/Stewori/pytypes#type_strtp-assumed_globalsnone-update_assumed_globalsnone-implicit_globalsnone-bound_genericnone). It creates a string representation of a type such that the type can be trivially reconstructed using eval....

Using ``get_type_hints`` within a module while that same module is being defined sounds like evil zone (but honestly, pytypes already needs to navigate evil zone from time to time^^). So,...

You mean ``` a = IntA(7) # good! a = IntA('foo') # bad! ``` don't you?

I would be interested to get this feature implemented in [pytypes](https://github.com/Stewori/pytypes). Unfortunately I don't have time to work on this right now and it is not a trivial thing to...

As of https://github.com/Stewori/pytypes/commit/c1c207bc75b8aaade78f44c785d045391caebc4a the described functionality is provided by [pytypes](https://github.com/Stewori/pytypes). @chadrik It would be good if you could check whether it works like you would expect. I am going to...

This looks related to the functionality of @override in pytypes, see https://github.com/Stewori/pytypes#usage-example. I think what you are asking for is already done there internally. It should be doable to make...

One more thing to try (worked for me): Some routers emit multiple wifis, typically one 5ghz and one 2ghz. I have to connect to the same wifi as the sonos...

Note that we used to have a [similar issue](https://github.com/jythontools/jython/issues/46) with Jython. It hindered workability of a couple of frameworks, e.g. SymPy or PyOpenGL. We are now using CPython bytecode for...