Bug: 346844476

Clone this repo:
  1. 9307e85 typing_extensions: use newest version am: bb82318427 am: e90eb68913 by Charlie Boutier · 7 months ago main aml_adb_351010000 aml_ase_351010000 aml_ase_351112060 aml_ase_351114000 aml_cbr_351011020 aml_cbr_351111000 aml_cfg_351010000 aml_con_351010000 aml_con_351110000 aml_doc_350915120 aml_doc_351012120 aml_doc_351113060 aml_ips_351010000 aml_ips_351111040 aml_med_350914000 aml_med_351010060 aml_mpr_350914160 aml_mpr_351013100 aml_mpr_351013160 aml_mpr_351113060 aml_mpr_351113100 aml_net_351010000 aml_net_351010020 aml_net_351111100 aml_net_351111140 aml_per_351014000 aml_per_351112280 aml_per_351112300 aml_res_351011000 aml_res_351111020 aml_rkp_351011000 aml_sch_351010000 aml_sta_350911020 aml_sta_351110040 aml_tet_351010220 aml_tet_351110060 aml_tz6_351010000 aml_uwb_351011040 aml_wif_351010040 aml_wif_351110060
  2. e90eb68 typing_extensions: use newest version am: bb82318427 by Charlie Boutier · 7 months ago android15-tests-dev android15-tests-release android-cts-15.0_r2 android-vts-15.0_r2
  3. 53e41c5 Merge remote-tracking branch 'origin/upstream' am: aedd517eda am: 33b5122b50 by Inna Palant · 7 months ago aml_sdk_350910000
  4. 33b5122 Merge remote-tracking branch 'origin/upstream' am: aedd517eda by Inna Palant · 7 months ago
  5. bb82318 typing_extensions: use newest version by Charlie Boutier · 7 months ago platform-tools-35.0.2

Typing Extensions

Chat at https://gitter.im/python/typing

DocumentationPyPI

Overview

The typing_extensions module serves two related purposes:

  • Enable use of new type system features on older Python versions. For example, typing.TypeGuard is new in Python 3.10, but typing_extensions allows users on previous Python versions to use it too.
  • Enable experimentation with new type system PEPs before they are accepted and added to the typing module.

typing_extensions is treated specially by static type checkers such as mypy and pyright. Objects defined in typing_extensions are treated the same way as equivalent forms in typing.

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.

Included items

See the documentation for a complete listing of module contents.

Contributing

See CONTRIBUTING.md for how to contribute to typing_extensions.