Daniele Varrazzo
Daniele Varrazzo
Hello, I am trying the `--preview` flag on psycopg codebase and the results are pretty ok. I wonder if there is a way to leave certain strings split, because it...
Thank you @bbugyi200, @felix-hilden. I think in this case interspersing comments is the way to go; in other cases (where there aren't meaningful comments to add) seems good that there...
Hello, I am not actively working with the Django developers: I wrote the driver and the first iteration of the backend but I left the ball in their field. I...
I think you are right: even in the C psycopg2 implementation the _psycopg import is unused.
Would it be possible to get a traceback of it? You may wrap the `__del__` method content in a try-except and print it when it happens using the "traceback" method.
This is only a shot in the dark: the method is: ``` def __del__(self): if self._pgres: libpq.PQclear(self._pgres) self._pgres = None ``` this is absolutely not thread safe. Could you test...
@mvantellingen Using pqExecParams is a long standiing issue in psycopg: in short, it can't be done unless breaking compatibility and cutting away features. I'm reserving some time in future to...
http://blog.kimiensoftware.com/2011/07/windows-postgresql-and-the-case-of-the-vanishing-libint-dll-372
FYI, on Ubuntu "auto-host.h not found" is solved by installing the gcc-X-plugin-dev package for the right gcc version.
I keep on tripping on this error. @davidmalcolm could you please give me your opinion about this problem? I believe in the past passing ownership to the object state was...