From: Daniele Varrazzo Date: Sun, 15 May 2022 10:00:00 +0000 (+0200) Subject: docs: drop stray reference to psycopg3 X-Git-Tag: 3.1~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6aa1e8f59d3e1ff30796ff77fa795effcbbc16dd;p=thirdparty%2Fpsycopg.git docs: drop stray reference to psycopg3 --- diff --git a/docs/basic/from_pg2.rst b/docs/basic/from_pg2.rst index 8a2bf269b..d6cfec325 100644 --- a/docs/basic/from_pg2.rst +++ b/docs/basic/from_pg2.rst @@ -239,7 +239,7 @@ only the transaction is closed, not the connection. This behaviour is surprising for people used to several other Python classes wrapping resources, such as files. -In psycopg3, using :ref:`with connection ` will close the +In Psycopg 3, using :ref:`with connection ` will close the connection at the end of the `!with` block, making handling the connection resources more familiar.