mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-26 02:43:43 +03:00
Merge branch 'bug-424' into maint_2_6
This commit is contained in:
commit
5e7a4983c6
1
NEWS
1
NEWS
|
@ -18,6 +18,7 @@ What's new in psycopg 2.6.2
|
||||||
- Fix build on Windows with Python 3.5, VS 2015 (:ticket:`#380`).
|
- Fix build on Windows with Python 3.5, VS 2015 (:ticket:`#380`).
|
||||||
- Fixed `!errorcodes.lookup` initialization thread-safety (:ticket:`#382`).
|
- Fixed `!errorcodes.lookup` initialization thread-safety (:ticket:`#382`).
|
||||||
- Fixed `!read()` exception propagation in copy_from (:ticket:`#412`).
|
- Fixed `!read()` exception propagation in copy_from (:ticket:`#412`).
|
||||||
|
- Fixed possible NULL TZ decref (:ticket:`#424`).
|
||||||
|
|
||||||
|
|
||||||
What's new in psycopg 2.6.1
|
What's new in psycopg 2.6.1
|
||||||
|
|
|
@ -451,7 +451,7 @@ psyco_TimestampFromTicks(PyObject *self, PyObject *args)
|
||||||
tz);
|
tz);
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
Py_DECREF(tz);
|
Py_XDECREF(tz);
|
||||||
Py_XDECREF(m);
|
Py_XDECREF(m);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user