| commit | 88be907eebd0dcfb21f82254c9d80ae165278b73 | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Mon May 22 13:45:06 2023 +0100 |
| committer | GitHub <noreply@github.com> | Mon May 22 05:45:06 2023 -0700 |
| tree | 1c9d360d91ccf2d50c3f4e9992e9f10c90e96d1a | |
| parent | 9648c6ffb2a3fa07907d853c4d74d4894e9dd1ad [diff] |
Improve the repr() of `_marker` (#174)
The typing_extensions module serves two related purposes:
typing.TypeGuard is new in Python 3.10, but typing_extensions allows users on previous Python versions to use it too.typing module.typing_extensions uses Semantic Versioning. The major version will be incremented only for backwards-incompatible changes. Therefore, it's safe to depend on typing_extensions like this: typing_extensions >=x.y, <(x+1), where x.y is the first version that includes all features you need.
typing_extensions supports Python versions 3.7 and higher.
See the documentation for a complete listing of module contents.
To run tests, navigate into the src/ directory and run test_typing_extensions.py.