URI postgresql:/// does not work anymore
Since https://github.com/python/cpython/issues/76960, the parser reconstructs this url postgresql:///
as postgresql:/
.
The //
is dropped because postgresql
is not in urllib.parse.uses_netloc
.
If we add postgresql
to uses_netloc
the behavior is restored and we can still support all the standard URI of PostgreSQL.