Emanuele Barsanti

Results 6 issues of Emanuele Barsanti

**Environmental Info:** K3s Version: v1.24.4+k3s1 (c3f830e9) **Node(s) CPU architecture, OS, and Version:** x86_64 Ubuntu 22.04.1 LTS (Linux Kernel 5.15.0-48-generic) **Cluster Configuration:** 1 server **Describe the bug:** Services with `externalTrafficPolicy: Local`...

Resolves #50 Gevent-specific tests needs to be run with `python -m gevent.monkey --module pytest tests/test_gevent.py`

I'm working on a project using `gevent` and I'd need to use `gevent.threadpool.ThreadPoolExecutor` since `gevent` patch the `concurrent.futures.ThreadPoolExecutor` class. I'd be more than happy to open a pull request, but...

**Describe the bug** Using `token_matching` with index `None` generates an `TypeError` exception **To Reproduce** Executing the following code ```python import sqlparse p = sqlparse.parse("SELECT id FROM table")[0] p.token_matching([lambda x: isinstance(x,...

Resolves #517 This hopefully add support for SQLAlchemy dataclass-mapped tables without breaking anything else The following code should run without errors: ```python from typing import Optional import sqlalchemy as sa...

enhancement

SQLAlchemy 2.0 introduced PEP 681 support to its integration with dataclasses, but unfortunately this is implemented through a generic type `Mapped[T]` that at the moment is not correctly understood. ```python...

enhancement