We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42fe11 commit bc6a2edCopy full SHA for bc6a2ed
HISTORY
@@ -1,3 +1,21 @@
1
+=====================
2
+ What's new in 1.3.6
3
4
+
5
+Fix escape_string() doesn't work.
6
7
+Remove `Cursor.__del__` to fix uncollectable circular reference on Python 3.3.
8
9
+Add context manager support to `Cursor`. It automatically closes cursor on `__exit__`.
10
11
+.. code-block::
12
13
+ with conn.cursor() as cur:
14
+ cur.execute("SELECT 1+1")
15
+ print(cur.fetchone())
16
+ # cur is now closed
17
18
19
=====================
20
What's new in 1.3.5
21
0 commit comments