Update HISTORY

This commit is contained in:
INADA Naoki
2015-02-25 11:41:36 +09:00
parent a42fe113bf
commit bc6a2ed69d

18
HISTORY
View File

@ -1,3 +1,21 @@
=====================
What's new in 1.3.6
=====================
Fix escape_string() doesn't work.
Remove `Cursor.__del__` to fix uncollectable circular reference on Python 3.3.
Add context manager support to `Cursor`. It automatically closes cursor on `__exit__`.
.. code-block::
with conn.cursor() as cur:
cur.execute("SELECT 1+1")
print(cur.fetchone())
# cur is now closed
===================== =====================
What's new in 1.3.5 What's new in 1.3.5
===================== =====================