We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b5d7dd commit 9eb7d41Copy full SHA for 9eb7d41
1 file changed
postgresql/driver/pq3.py
@@ -5,23 +5,15 @@
5
"""
6
PG-API interface for PostgreSQL using PQ version 3.0.
7
8
-import sys
9
import os
10
import weakref
11
-import warnings
12
-import collections
13
-
14
-import errno
15
import socket
16
from traceback import format_exception
17
18
from operator import itemgetter
19
get0 = itemgetter(0)
20
get1 = itemgetter(1)
21
-from itertools import repeat, islice, chain, count
22
-from functools import partial
23
24
-from abc import abstractmethod, abstractproperty
+from itertools import repeat, chain
+from abc import abstractmethod
25
26
from .. import lib as pg_lib
27
0 commit comments