bindings: python: specify the symbols to export explicitly
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 25 May 2023 12:02:10 +0000 (14:02 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 25 May 2023 13:30:25 +0000 (15:30 +0200)
commit4687bcc4f48a9894469ee240e0c67c42d56169c3
tree8322b8c719d74f8de615bf3b75456ac49d111e9b
parentc6b0cd777010f0cf00c3d04b00efd79353b66174
bindings: python: specify the symbols to export explicitly

We're currently unintentionally exporting a bunch of symbols that should
remain local to sub-modules. Use __all__ where appropriate so that we
don't re-export standard library functions such as select() etc. in the
gpiod module.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/gpiod/chip.py
bindings/python/gpiod/chip_info.py
bindings/python/gpiod/edge_event.py
bindings/python/gpiod/exception.py
bindings/python/gpiod/ext/module.c
bindings/python/gpiod/info_event.py
bindings/python/gpiod/internal.py
bindings/python/gpiod/line.py
bindings/python/gpiod/line_info.py
bindings/python/gpiod/line_request.py
bindings/python/gpiod/line_settings.py