Ilias Timir-Bulatov
Ilias Timir-Bulatov
### Specification - pywebview version: 3.6.3[cef] - operating system: windows 10 - web renderer: ### Description ```python import time import webview def eval_js(): for _ in range(3): print('pre eval js')...
if a script is executed with an error, then further script execution gets stuck
- fixes # Checklist: - [ ] Add tests that demonstrate the correct behavior of the change. Tests should fail without the change. - [ ] Add or update relevant...
**Describe the bug** If a column has a boolean type, then in Python it becomes a string. **To Reproduce** ```python engine = create_engine('clickhouse+http://...') t = Table( 'table', Column('is_something', Boolean), )...
The HTTP driver does not support the boolean type. Checklist: - [ ] Add tests that demonstrate the correct behavior of the change. Tests should fail without the change. -...
I use my custom HTTP session with overridden TCPConnector. ```python conn = aiohttp.TCPConnector(ssl=ssl_context) socketio.AsyncClient( ..., http=aiohttp.ClientSession(connector=conn), ) ``` And after the reconnect is called, the default session can override the...