summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2019-02-16 18:08:08 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2019-02-16 18:12:52 +0100
commit80b7b845d2cfaddef3f623a1357048954308dc0a (patch)
treecec7367f6bda555bab2befe50911744821ecc59e /NEWS
parent3b7c083c3d92b7c1cd22c5af53b9ee18dc331db3 (diff)
downloadpsycopg2-80b7b845d2cfaddef3f623a1357048954308dc0a.tar.gz
Added docs about pgconn_ptr, pgresult_ptrlibpq-ptrs
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 984d531..adc6685 100644
--- a/NEWS
+++ b/NEWS
@@ -17,7 +17,9 @@ New features:
- Added `connection.info` object to retrieve various PostgreSQL connection
information (:ticket:`#726`).
- Added `~connection.get_native_connection()` to expose the raw ``PGconn``
- structure (:ticket:`#782`).
+ structure to C extensions via Capsule (:ticket:`#782`).
+- Added `~connection.pgconn_ptr` and `~cursor.pgresult_ptr` to expose raw
+ C structures to Python and interact with libpq via ctypes (:ticket:`#782`).
- `~psycopg2.sql.Identifier` can represent qualified names in SQL composition
(:ticket:`#732`).
- Added *fetch* parameter to `~psycopg2.extras.execute_values()` function