Kumar Aditya
Kumar Aditya
[PyPy](https://www.pypy.org/) is a fast, compliant alternative implementation of Python, it is much faster as compared to cpython, and is mostly used for pure python code. Since playwright is a pure...
Same thing as in js/ts world `playwright.config.ts` equivalent for python `playwright.conf.py` which would automatically parameterize all the tests. Includes https://github.com/microsoft/playwright-pytest/issues/67
Add support for snapshots of the page, screenshots etc like in jest `toMatchSnapshot` Example: https://github.com/kumaraditya303/pytest-playwright-snapshot
Currently there are no functional tests for argument clinic and the present tests mostly verify generated code not the runtime behavior. This can lead to bugs like https://github.com/python/cpython/pull/32092 so adding...
Codemod to convert typing.Union and typing.Optional to [PEP 604](https://www.python.org/dev/peps/pep-0604/) syntax and add `__future__` as required.
```console 3.10 -> async_generators: Mean +- std dev: 643 ms +- 28 ms main -> async_generators: Mean +- std dev: 441 ms +- 20 ms ```
Add a benchmarks for `dataclasses` module.
* Issue: gh-98327