Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bc6a2ed

Browse filesBrowse files
committed
Update HISTORY
1 parent a42fe11 commit bc6a2ed
Copy full SHA for bc6a2ed

File tree

Expand file treeCollapse file tree

1 file changed

+18
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+18
-0
lines changed

‎HISTORY

Copy file name to clipboardExpand all lines: HISTORY
+18Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
119
=====================
220
What's new in 1.3.5
321
=====================

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.