Bug: 346844476

Clone this repo:
  1. 9307e85 typing_extensions: use newest version am: bb82318427 am: e90eb68913 by Charlie Boutier · 10 months ago android15-qpr2-release android15-qpr2-s1-release android15-qpr2-s2-release android15-qpr2-s3-release android15-qpr2-s4-release android15-qpr2-s5-release android15-qpr2-s6-release main aml_adb_351010000 aml_ase_351010000 aml_ase_351112060 aml_ase_351114000 aml_ase_351311040 aml_ase_351412000 aml_cbr_351011020 aml_cbr_351111000 aml_cbr_351310040 aml_cbr_351410000 aml_cfg_351010000 aml_con_351010000 aml_con_351110000 aml_con_351412000 aml_doc_350915120 aml_doc_351012120 aml_doc_351113060 aml_doc_351311000 aml_doc_351412000 aml_ips_351010000 aml_ips_351111040 aml_ips_351310000 aml_ips_351410000 aml_med_350914000 aml_med_351010060 aml_med_351311020 aml_mpr_350914160 aml_mpr_351013100 aml_mpr_351013160 aml_mpr_351113060 aml_mpr_351113100 aml_mpr_351311140 aml_mpr_351416060 aml_net_351010000 aml_net_351010020 aml_net_351111100 aml_net_351111140 aml_net_351310100 aml_net_351410000 aml_net_351410060 aml_per_351014000 aml_per_351112280 aml_per_351112300 aml_per_351310020 aml_per_351410020 aml_res_351011000 aml_res_351111020 aml_res_351111040 aml_rkp_351011000 aml_rkp_351310000 aml_sch_351010000 aml_sta_350911020 aml_sta_351110040 aml_sta_351311000 aml_sta_351416000 aml_swc_351311020 aml_tet_351010220 aml_tet_351110060 aml_tet_351314140 aml_tet_351415080 aml_tz6_351010000 aml_tz6_351400020 aml_uwb_351011040 aml_uwb_351310040 aml_wif_351010040 aml_wif_351110060 aml_wif_351310040 aml_wif_351410040 android-15.0.0_r20 android-15.0.0_r21 android-15.0.0_r22 android-15.0.0_r23 android-15.0.0_r26 android-15.0.0_r27 android-15.0.0_r28 android-15.0.0_r29 android-15.0.0_r30
  2. e90eb68 typing_extensions: use newest version am: bb82318427 by Charlie Boutier · 10 months ago android15-tests-dev android15-tests-release android-cts-15.0_r2 android-cts-15.0_r3 android-vts-15.0_r2 android-vts-15.0_r3
  3. 53e41c5 Merge remote-tracking branch 'origin/upstream' am: aedd517eda am: 33b5122b50 by Inna Palant · 10 months ago aml_sdk_350910000
  4. 33b5122 Merge remote-tracking branch 'origin/upstream' am: aedd517eda by Inna Palant · 10 months ago
  5. bb82318 typing_extensions: use newest version by Charlie Boutier · 10 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.