risa2000

Results 17 issues of risa2000

I am trying to figure out, how to implement an option for a "verbosity" level `-v`. The idea is that it should be _repeatable_ and _joinable_, i.e. `-v` should set...

bug

I am using the commands semantics to implement several mandatory choices, but I would like to have a default command choice, when the user does not include the command on...

question

It seems some internal include structure leaked through. The fix: 1) replaces the "system relative" includes of type `` with project relative includes (of type `"#include ..."` and fixes the...

After the last system upgrade of Raspbian to: ``` pi@hass:~ $ uname -a Linux hass 4.19.42-v7+ #1219 SMP Tue May 14 21:20:58 BST 2019 armv7l GNU/Linux ``` I am observing...

I am facing a strange behavior when debugging a Python script (i.e. not and add-on) which uses the following pattern: ```python bpy.ops.mesh.primitive_cylinder_add(vertices=8, radius=CYLINDER_RADIUS, depth=CYLINDER_HEIGHT, location=location, rotation=rotation) obj = bpy.context.object obj.name...

I am running Blender with locally installed Python (simply because it has all the libs I need in the scripts). I noticed however that current version will not run, because...

bug
good first issue

When writing my app (on Windows), I noticed that I can start several server instances which all bind happily to the same address/port combination, but only one is reachable. While...

I am running jupyter-lab v.3 in virtual environment. All non standard packages are installed in this venv. When I choose xeus-python (XPython) in jupyter-lab kernel list, the execution fails with...

I came across this function while reading https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python/blob/master/03-Gaussians.ipynb. It is copy pasted into the book: ```python def rand_student_t(df, mu=0, std=1): """return random number distributed by Student's t distribution with `df`...

This is just an updated variant of the #1524. It seems another error creeped in in the new release, one enum error code was removed from the header, but left...