tazr

Results 3 issues of tazr

CURRENTLY, CODE AUTO-COMPLETION (https://github.com/jupyter-xeus/xeus-sqlite/issues/36) WORKS WHEN SQL KEYWORDS ARE WRITTEN IN UPPERCASE. WHILE THIS CONVENTION IS (STILL) POPULAR, USING lower case for SQL queries is not uncommon, perhaps even preferable,...

```python from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor import blosc2 import numpy as np def test(arr): print("test begins") blosc2.pack_array(arr) print("test ends") def main(): arrs = [np.random.randint(255, size=(1024, 1024), dtype=np.uint8) for _ in...

### 🐛 Describe the bug I am wrapping an `sqlite3` cursor inside an `IterableWrapper` for further processing. ```python import sqlite3 from torchdata.nodes import IterableWrapper, Loader, ParallelMapper db = sqlite3.connect(':memory:') db.execute('create...