paroxython icon indicating copy to clipboard operation
paroxython copied to clipboard

Tag and recommend Python exercises based on algorithmic features

Results 25 paroxython issues
Sort by recently updated
recently updated
newest added

This PR updates [regex](https://pypi.org/project/regex) from **2020.7.14** to **2022.7.25**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* Links - PyPI: https://pypi.org/project/regex - Repo: https://github.com/mrabarnett/mrab-regex

This PR updates [typed-ast](https://pypi.org/project/typed-ast) from **1.4.1** to **1.5.4**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* Links - PyPI: https://pypi.org/project/typed-ast - Repo: https://github.com/python/typed_ast

This PR updates [pytest](https://pypi.org/project/pytest) from **6.1.1** to **7.1.2**. Changelog ### 7.1.2 ``` ========================= Bug Fixes --------- - `9726 <https://github.com/pytest-dev/pytest/issues/9726>`_: An unnecessary ``numpy`` import inside :func:`pytest.approx` was removed. - `9820 <https://github.com/pytest-dev/pytest/issues/9820>`_:...

This PR updates [typing-extensions](https://pypi.org/project/typing-extensions) from **3.7.4.3** to **4.2.0**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* Links - PyPI: https://pypi.org/project/typing-extensions

This PR updates [sqlparse](https://pypi.org/project/sqlparse) from **0.4.1** to **0.4.2**. Changelog ### 0.4.2 ``` ---------------------------- Notable Changes * IMPORTANT: This release fixes a security vulnerability in the strip comments filter. In this...

I just wanted to share a project I thought you'd be interested in: https://futurecoder.io/ It's a free open source online interactive Python course where users run code and solve exercises....

- [x] [Assignment expressions](https://www.python.org/dev/peps/pep-0572/). - [ ] [Type hints](https://www.python.org/dev/peps/pep-0484/). - [ ] [With statement](https://www.python.org/dev/peps/pep-0343/). - [x] `print` function keyword arguments (`sep`, `end`, `file`, `flush`). Use existing feature [`keyword_argument`](https://github.com/laowantong/paroxython/blob/master/paroxython/resources/spec.md#feature-keyword_argument).

enhancement

Currently, the learning costs are calculated with a simple mathematical formula. This approach is obviously very basic. One could imagine letting the teacher provide the learning cost associated with the...

enhancement

The techniques currently used to match algorithmic features in a given source code are: - a conversion of its AST into a textual flattened representation; - regular expressions for low-level...

enhancement
question

```paroxython collect --log path/to/django-master/``` ... produces the following performance report: ``` Labelling 2668 programs. Elapsed times by features (in seconds) -------------------------------------- 333.6141 TOTAL 65.2732 node 26.0090 if_then_branch 16.3087 index 10.1161...

performance