AlexV

Results 70 comments of AlexV
trafficstars

After a quick preliminary research, there are at least two big differences that I am aware about: - virtualenvs work with pip, which works with package versions. The whole point...

I m currently working on https://github.com/asmodehn/catkin_pure_python to allow catkin users to manipulate python packages directly with pip ( instead of custom catkin code ). I tried a few different approach...

Well, for context I also read https://github.com/asdf-vm/asdf/issues/1127 and https://github.com/asdf-vm/asdf/issues/196. I am also in favor of avoiding the complexity of a full dependency graph resolution in asdf (ordering in `.tool-versions` is...

Related to this topic, I am trying to mock sockets with mocket (see https://github.com/mindflayer/python-mocket/issues/74#issuecomment-410617959), but I cannot pass this typecheck : https://github.com/python-trio/trio/blob/master/trio/_core/__init__.py#L43 Shouldn't this part also use a `isinstance()` instead...

I had a go at adding a macro to run property test for typeclass during `mix test`, you can find it there : https://github.com/asmodehn/type_class/pull/2/files

So, I tried with a protocol: https://github.com/witchcrafters/type_class/commit/7c15ee21aa16023d40153219e480d38d146e7ca0 but this prevents witchcraft from compiling, not sure why. I implemented equal to be recursive on data structures, and this satisfies my needs...

I m currently playing around with mpmath, and I find more corner cases not handled properly (curently around interval arithmetic) I might not use it as expected, but I was...

see #10 for one attempt. It seems that the current design is not ideal for this...

Yes exactly that. I've been wanting to do that in Python for a while to define explicit interfaces/way to use my class instances, without having traditional class inheritance getting in...

I just stumbled onto this... Is there any hint on where the problem may be, and how I could attempt to fix it ?