lambdas
lambdas copied to clipboard
Write short and fully-typed lambdas where you need them.
Bumps [flake8-pyi](https://github.com/PyCQA/flake8-pyi) from 23.6.0 to 23.11.0. Release notes Sourced from flake8-pyi's releases. 23.11.0 New error codes: Y058: Use Iterator rather than Generator as the return value for simple __iter__ methods,...
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.4.2 to 7.4.3. Release notes Sourced from pytest's releases. pytest 7.4.3 (2023-10-24) Bug Fixes #10447: Markers are now considered in the reverse mro order to ensure base...
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.0.4 to 2.0.7. Release notes Sourced from urllib3's releases. 2.0.7 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other"...
Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.36 to 3.1.37. Release notes Sourced from gitpython's releases. 3.1.37 - a proper fix CVE-2023-41040 What's Changed Improve Python version and OS compatibility, fixing deprecations by @EliahKagan...
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 6.2.1 to 7.1.2. Release notes Sourced from sphinx's releases. Sphinx 7.1.2 Changelog: https://www.sphinx-doc.org/en/master/changes.html Sphinx 7.1.1 Changelog: https://www.sphinx-doc.org/en/master/changes.html Sphinx 7.1.0 Changelog: https://www.sphinx-doc.org/en/master/changes.html v7.0.1 Changelog: https://www.sphinx-doc.org/en/master/changes.html v7.0.0 Changelog: https://www.sphinx-doc.org/en/master/changes.html...
```python >>> complex_math_expression = 50 / (_ ** 2) * 2 >>> print(complex_math_expression(5)) 100.0 ``` But: ```python >>> 50 / (5 ** 2) * 2 4.0 ``` Not good :)