opencv/modules/python/src2/typing_stubs_generation
Vadim Levin 94703fc5b0
Merge pull request #23816 from VadimLevin:dev/vlevin/export-all-caps-enum-constants
Export enums ALL_CAPS version to typing stub files #23816

- Export ALL_CAPS versions alongside from normal names for enum constants, since both versions are available in runtime
- Change enum names entries comments to documentary strings

Before patch
```python
RMat_Access_R: int
RMat_Access_W: int
RMat_Access = int  # One of [R, W]
```
After patch
```python
RMat_Access_R: int
RMAT_ACCESS_R: int
RMat_Access_W: int
RMAT_ACCESS_W: int
RMat_Access = int
"""One of [RMat_Access_R, RMAT_ACCESS_R, RMat_Access_W, RMAT_ACCESS_W]"""
```

Resolves: #23776

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake
2023-06-16 20:03:19 +03:00
..
nodes Merge pull request #23809 from VadimLevin:dev/vlevin/re-export-stubs-submodules 2023-06-16 20:01:24 +03:00
__init__.py Merge pull request #20370 from ddacw:stub-gen-next 2023-05-26 18:25:46 +03:00
ast_utils.py fix: typing module enums references 2023-06-15 21:29:40 +03:00
generation.py Merge pull request #23816 from VadimLevin:dev/vlevin/export-all-caps-enum-constants 2023-06-16 20:03:19 +03:00
predefined_types.py feat: provide cv2.typing aliases at runtime 2023-06-14 20:09:32 +03:00
types_conversion.py Merge pull request #20370 from ddacw:stub-gen-next 2023-05-26 18:25:46 +03:00