Skip to content

Commit 9eb7d41

Browse files
author
James William Pye
committed
Remove some unnecessary imports.
1 parent 2b5d7dd commit 9eb7d41

1 file changed

Lines changed: 2 additions & 10 deletions

File tree

postgresql/driver/pq3.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,15 @@
55
"""
66
PG-API interface for PostgreSQL using PQ version 3.0.
77
"""
8-
import sys
98
import os
109
import weakref
11-
import warnings
12-
import collections
13-
14-
import errno
1510
import socket
1611
from traceback import format_exception
17-
1812
from operator import itemgetter
1913
get0 = itemgetter(0)
2014
get1 = itemgetter(1)
21-
from itertools import repeat, islice, chain, count
22-
from functools import partial
23-
24-
from abc import abstractmethod, abstractproperty
15+
from itertools import repeat, chain
16+
from abc import abstractmethod
2517

2618
from .. import lib as pg_lib
2719

0 commit comments

Comments
 (0)