From: Daniele Varrazzo Date: Sun, 16 May 2021 00:25:40 +0000 (+0200) Subject: Drop unused import X-Git-Tag: 3.0.dev0~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb781e9862f299d81323b947c8d7cfd72c41fd34;p=thirdparty%2Fpsycopg.git Drop unused import --- diff --git a/psycopg3_c/psycopg3_c/types/numeric.pyx b/psycopg3_c/psycopg3_c/types/numeric.pyx index 211cf3cbc..765582058 100644 --- a/psycopg3_c/psycopg3_c/types/numeric.pyx +++ b/psycopg3_c/psycopg3_c/types/numeric.pyx @@ -31,7 +31,6 @@ cdef extern from "Python.h": char *PyOS_double_to_string( double val, char format_code, int precision, int flags, int *ptype ) except NULL - int PyOS_snprintf(char *str, size_t size, const char *format, ...) int Py_DTSF_ADD_DOT_0 long long PyLong_AsLongLongAndOverflow(object pylong, int *overflow) except? -1