Peter Bittner
Peter Bittner
Following up on issues https://github.com/cool-RR/PythonTurtle/pull/105#issuecomment-421965482, #106 and #90, I'd like to start collecting information on how to (best) do packaging for all platforms PythonTurtle runs on. When we know how...
It would be nice to have a continuation of the learning levels. This could be: - More (and more fascinating) examples of things to draw using (and thus practicing) the...
Instead of simply deactivating the builtins that cause trouble on the UI we can implement some useful behavior: - `exit()` should terminate the PythonTurtle application (as it would terminate the...
It's now possible to add a :heart: Sponsor button to a GitHub repository. - [Documentation](https://help.github.com/en/articles/displaying-a-sponsor-button-in-your-repository) - [Example](https://github.com/NixOS/nixpkgs/blob/master/.github/FUNDING.yml) Nice idea, maybe.
[Help page 4](https://github.com/cool-RR/PythonTurtle/blob/master/src/resources/help4.png) contains code examples that may need to be updated in order to promote common practice in Python programming. Specifically, the `for` loop should use an "anonymous" count...
Lengthy operations can't be interrupted in PythonTurtle, as of today. This proves to be a huge problem (which is also related to #24). User interface becomes unresponsive --------------- Especially with...
Currently, when you open the About dialog window and click through to display the license you notice that the window is resizing. It seems that this is due to the...
As mentioned in #6, the Git repository takes some time to clone due to the fact that the Git history contains old binaries for macOS and Windows (which have been...
Adds a link to the community-contributed Franz recipe for Wire. https://app.wire.com
# Summary We use pytest-cov driven by Tox for testing a Click CLI application. Click provides a [CliRunner class](https://click.palletsprojects.com/en/8.0.x/testing/) for test execution and file system isolation. When we run `CliRunner().invoke(main,...