mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-08-03 20:00:09 +03:00
parent
3cdc0bc6e5
commit
0bea06f513
1
NEWS
1
NEWS
|
@ -6,6 +6,7 @@ What's new in psycopg 2.7.6
|
||||||
|
|
||||||
- Close named cursors if exist, even if `~cursor.execute()` wasn't called
|
- Close named cursors if exist, even if `~cursor.execute()` wasn't called
|
||||||
(:ticket:`#746`).
|
(:ticket:`#746`).
|
||||||
|
- Fixed building on modern FreeBSD versions with Python 3.7 (:ticket:`#755`)
|
||||||
|
|
||||||
|
|
||||||
What's new in psycopg 2.7.5
|
What's new in psycopg 2.7.5
|
||||||
|
|
|
@ -153,6 +153,11 @@ typedef unsigned __int64 uint64_t;
|
||||||
#include "win32_support.h"
|
#include "win32_support.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Use params.h for __FreeBSD_version (only needed from a certain version on) */
|
||||||
|
#if defined(__FreeBSD__) && !defined(__FreeBSD_version)
|
||||||
|
#include <sys/param.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/* what's this, we have no round function either? */
|
/* what's this, we have no round function either? */
|
||||||
#if (defined(__FreeBSD__) && __FreeBSD_version < 503000) \
|
#if (defined(__FreeBSD__) && __FreeBSD_version < 503000) \
|
||||||
|| (defined(_WIN32) && !defined(__GNUC__)) \
|
|| (defined(_WIN32) && !defined(__GNUC__)) \
|
||||||
|
|
Loading…
Reference in New Issue
Block a user