Vojtech Letal
Vojtech Letal
* cattrs version: 1.8.0 * Python version: 3.9.7 * Operating System: macOS ### Description Let's have the following test case ```py @define class X(Generic[T]): field: List[T] def pred(cls): print(f">>> {cls}")...
There is a related issue to it here [SCL-3777](https://youtrack.jetbrains.com/issue/SCL-3777) yet it's not exactly it. Do we need a custom plugin for that? 🤔
Let's have a generator of a data structure which contains a *non empty* list. Like ```scala Gen.nonEmptyListOf(Gen.choose(0,10)) ``` When shrinking kicks in, what happens is that the list gets shortened...
Can not be installed due to this unresolved issue https://github.com/typelead/eta/issues/487. The requirement is Etlas >= `1.0.2.0` && < `1.1.0.0` and there is no version present as a tag in https://github.com/typelead/etlas...
The full notebooks and error logs can be found in this [gist](https://gist.github.com/letalvoj/d602e22e9ae04c31afc89d58f4977075). ### Error ```python ~/Workspace/Personal/ngraphtf/venv/lib/python3.7/site-packages/tensorflow/python/client/session.py in __call__(self, *args, **kwargs) 1456 ret = tf_session.TF_SessionRunCallable(self._session._session, 1457 self._handle, args, -> 1458 run_metadata_ptr)...
Let's have an enum ``` enum E: case C ``` I'd expect one of the following to be possible: - `constValue[E.C.type]` should provide `C` and other parameter-less cases - `Mirror.Sum`...
Trailing comma support is incomplete. Python allows statements such as ```py () # reserved for `Unit` in scala (1,) ``` The https://github.com/lampepfl/dotty/pull/9049 changes `Tuple` instantiation, to ```scala Tuple() // empty...