aiosqlite icon indicating copy to clipboard operation
aiosqlite copied to clipboard

asyncio bridge to the standard sqlite3 module

Results 63 aiosqlite issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [sphinx-mdinclude](https://github.com/omnilib/sphinx-mdinclude) from 0.5.3 to 0.6.0. Changelog Sourced from sphinx-mdinclude's changelog. v0.6.0 Feature release Added support for mistune v3, dropped support for mistune v2 (#22, #46) Added strict type annotations...

dependencies
python

Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0. Changelog Sourced from mypy's changelog. Mypy Release Notes Next release Mypy 1.10 We’ve just uploaded mypy 1.10 to the Python Package Index (PyPI). Mypy...

dependencies
python

Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 7.2.6 to 7.3.7. Release notes Sourced from sphinx's releases. Sphinx 7.3.7 Changelog: https://www.sphinx-doc.org/en/master/changes.html Sphinx 7.3.6 Changelog: https://www.sphinx-doc.org/en/master/changes.html Sphinx 7.3.5 Changelog: https://www.sphinx-doc.org/en/master/changes.html Sphinx 7.3.4 Changelog: https://www.sphinx-doc.org/en/master/changes.html Sphinx 7.3.3...

dependencies
python

Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 24.2.6 to 24.4.26. Release notes Sourced from flake8-bugbear's releases. 24.4.6 B909: Fix false positive affecting containers of mutables (#469) 24.4.21 B950: Add pragma comment to line length...

dependencies
python

``` class ProxyClass: def __init__(self): self._conn = None self._connected = False async def connect(self): self._conn = await aiosqlite.connect(':memory:') self._connected = True def close(self): await self._conn.close() self._connected = False def __getattr__(self,...

Bumps [coverage[toml]](https://github.com/nedbat/coveragepy) from 7.4.4 to 7.5.4. Release notes Sourced from coverage[toml]'s releases. 7.5.4 If you attempt to combine statement coverage data with branch coverage data, coverage.py used to fail with...

dependencies
python

Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.1. Changelog Sourced from mypy's changelog. Mypy 1.10.1 Fix error reporting on cached run after uninstallation of third party library (Shantanu, PR 17420) Acknowledgements Thanks...

dependencies
python

Bumps [sphinx-mdinclude](https://github.com/omnilib/sphinx-mdinclude) from 0.5.3 to 0.6.1. Changelog Sourced from sphinx-mdinclude's changelog. v0.6.1 Bugfix release Fix rendering of codespans within link text (#68) Added explicit dependency on Sphinx (#70) $ git...

dependencies
python

### Description Currently, the threads spawned by aiosqlite's Connection are non-daemon threads, so if you don't explicitly close the connection, the program will stay alive after the main thread exits....

### Description Without fix: - Once `await connection.close()` returns, the connection thread may continue to processes transaction queue items and attempt to forward results to the user's event loop (possibly...