Daniele Varrazzo
Daniele Varrazzo
I'm working on the Py3 conversion. See https://github.com/dvarrazzo/psycopg2-ctypes/ branch 'py3'.
Hello, In #765 I am trying to fix the PATH in the build env to build a packages. The story is actually a bit more complicated than that: in order...
Hello, I am giving a spin to tox 4.0.0b1 on the [psycopg 3 project](https://github.com/psycopg/psycopg/). Using tox 3, you can run tests using `tox -c psycopg -s`. On tox4, the first...
We have set up a workflow to build Apple Silicon packages for psycopg. Building these packages comes at a cost, because of the scarcity that Apple forces on this hardware...
Currently in psycopg a lone `%` is accepted when the query has no parameters, but must be doubled into `%%` if the query takes parameters. This is confusing because changing...
Related to #824, Identifiers and literals containing a `%` don't go through a round of escaping and end up messing up the parameters. ```python >>> import psycopg2 >>> from psycopg2...
`select '-1 year -2 mons +3 days -04:05:06'::interval` doesn't return the correct value in Python
Hello, thank you for this tool, it's being great to use to look into profiling C extensions! I am running the tool to compare psycopg2 and psycopg3 behaviours (back on...