Denis Laxalde
Denis Laxalde
It's ready for review; I'll rebase when I get a moment.
There is PEP to add a `Self` type, which might help us here: https://peps.python.org/pep-0673/ It's available from python 3.11 already, https://docs.python.org/3.11/library/typing.html#typing.Self; it's in `typing_extensions` as well. (This also reminds me...
Maybe try https://github.com/python/typing/discussions? I think that's the "official" forum and it seems quite active.
Another option is the `NORMALIZE_WHITESPACE` doctest flag. With that, you can remove trailing whitespaces while keeping a doctest pass: ``` >>> f(s) # doctest: +NORMALIZE_WHITESPACE 0 Texthero dtype: object ```...
Hi @dvarrazzo, That's a good question and I understand the concern about possible extra maintenance burden. I do remember that we stated that pipeline and streaming modes were not supposed...
`escape_identifier` is expecting a `bytes` value, not a `str` but the [documentation](https://www.psycopg.org/psycopg3/docs/api/sql.html) indeed has an example with a string. Maybe the doc needs updating instead?
> Yes, that example is wrong. The problem is that the correction is very ugly: Maybe it should be removed then? Or replaced with a link to discussion #420 to...
anosql is probably not needed and we can roll our own `.sql` file loader as in https://github.com/dalibo/pg_activity/blob/v2.3.0/pgactivity/queries/__init__.py
@handrews > I think we need to figure out what level of specificity we want. I have been going for something more specific, particularly to enable content negotiation. But I...
@handrews > I can go into more detail but I'll pause here to see if this is making sense. This makes sense, thanks! @dret > ever heard of DSDL? there...