Pedro Fonini

Results 4 issues of Pedro Fonini

This (correctly, IMO) produces no warnings: ```python import foo dct = { 'key': foo.yadayada() if foo.some_condition() # raises no warnings else foo.blablebli() } ``` On the other hand, simply adding...

When I want a debug build of Python itself (useful to debug C extensions in gdb), I do `pyenv install -kg`. The `-k` option downloads the sources to `$PYENV_ROOT/sources`. I...

type: enhancement

**Describe the bug** I usually have the following structure in my projects: ```toml # pyproject.toml [build-system] requires = ["setuptools>=67.6.0"] build-backend = "setuptools.build_meta" [project] dynamic = ["dependencies"] # no `dependencies` key...

bug
help wanted
good first issue

## Motivation The motivation is the variable scope problem mentioned in the _How I animate 3Blue1Brown | A Manim demo with Ben Sparks_ video. This is what's going on: ```python...