Skip to content

Commit 0f21afe

Browse files
author
James William Pye
committed
Relocate TypeIO back (?) into pq3.
There are far too many protocol specific aspects to allow it to exist as an independent module/class.
1 parent 3a8551a commit 0f21afe

3 files changed

Lines changed: 459 additions & 479 deletions

File tree

postgresql/api.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'Connector',
2828
'Category',
2929
'Database',
30+
'TypeIO',
3031
'Connection',
3132
'Transaction',
3233
'Settings',
@@ -1003,6 +1004,12 @@ def wait(self, timeout = None) -> collections.Iterator:
10031004
responsibility of the user.
10041005
"""
10051006

1007+
class TypeIO(Element):
1008+
_e_label = 'TYPIO'
1009+
1010+
def _e_metas(self):
1011+
return ()
1012+
10061013
class SocketFactory(object):
10071014
@propertydoc
10081015
@abstractproperty

0 commit comments

Comments
 (0)