Daraan
Daraan
This PR adds the already merged one-line fix from https://github.com/carla-simulator/scenario_runner/pull/1053 > Replace xml.etree.ElementTree.Element.getchildren method which is deprecated from python 3.2 and removed in python 3.9 with a suggested replacement https://docs.python.org/3.8/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.getchildren...
#### Description This PR adds two things: - TypeComments for the GlobalRoutePlanner, and barried code by `TYPE_CHECKING` granting good type coverage for pyright: basic - Updated some - - -...
#### Description Included in this PR are ### Doc changes 1. Rolled back two changes from #7763: 1. Re added "identifiers" in this docstring, as the sentence is incomplete currently....
Addresses - https://github.com/python/typing_extensions/issues/469 As @JelleZijlstra [mentioned](https://github.com/python/typing_extensions/pull/449#discussion_r1773747048) that GenericAlias can be used to address #469. `GenericAlias` seems promising, however I am not sure what greater underlying changes this swap could maybe...
Fixes #448 that usage of ParamSpec with TypeAliasType was limited for < Python 3.11 This PR enables `TypeAliasType` to use Ellipsis and list arguments for `ParamSpec` type params.
Fixes #110 for Python 3.9-3.10: An Ellipsis cannot be used with `Concatenate` as last parameter must be a `ParamSpec` in Python 3.11 this is allowed, Python 3.10 does not support...
Depending on the python version some attributes for subcripted `TypeAliasType` are not present after the `__getitem__` call. `__name__` is present in Python 3.11+; `"__name__", "__type_params__", "__value__"` are missing in earlier...
When using a `TypeAliasType` without type_params it should raise an error which it currently doesn't: ```python from typing import TypeAliasType as typing_TA from typing_extensions import TypeAliasType # this should raise...
`TypeAliasType` currently has some bug/limitation when using it together with a `ParamSpec` in Python Any # Error FooIntInt = Foo[[int, int]] # (int, int) -> Any # Error FooWhatever =...
#### Description Fixes #8093 This is a hack that fixes the messy import namespacing of the `ad_rss` library. Importing `carla` which in turns imports `ad_rss as ad` puts provides all...