Zach Dwiel
Zach Dwiel
In order to reproduce: x.py: ``` from .test import system system('hello world') ``` `test/__init__.py` ``` from os import system ``` note that `test/__init__.py` must not have a newline at the...
Is anyone successfully running dat from inside kubernetes? The following Deployment is currently working for me, but it would be nice to avoid requiring `hostNetwork: true`. Also wondering how to...
set up readthedocs documentation generatation
It would be nice for hybrid_methods to be available in a form something like this: ``` class Location(): @hybrid_method def temperature(self, day): return weather.temperature(self.zipcode, day) # available in the API...
It appears that `generate_copy_seed_sequence is generating a seed sequence based on a mix of the examples. ``` #A very simple seed generator #Copies a random example's first seed_length sequences as...
Right now you have to click a mouse button (and optionally also a keyboard key) to enable scrolling. It would be nice if you could scroll with just mouse movement...
It seems that currently, initializing workers is blocking and done sequentially: ``` def setup_nodes(self, putevent): self.config.hook.pytest_xdist_setupnodes(config=self.config, specs=self.specs) self.trace("setting up nodes") # from multiprocessing import Pool # p = Pool(len(self.specs)) #...