reydb 1.1.59__py3-none-any.whl → 1.1.61__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
reydb/__init__.py CHANGED
@@ -18,7 +18,6 @@ rdb : Database methods.
18
18
  rerror : Database error methods.
19
19
  rexec : Database execute methods.
20
20
  rfile : Database file methods.
21
- rinfo : Database information methods.
22
21
  rorm : Database ORM methods.
23
22
  rparam : Database parameter methods.
24
23
  """
reydb/rall.py CHANGED
@@ -17,6 +17,5 @@ from .rdb import *
17
17
  from .rerror import *
18
18
  from .rexec import *
19
19
  from .rfile import *
20
- from .rinfo import *
21
20
  from .rorm import *
22
21
  from .rparam import *
reydb/rbase.py CHANGED
@@ -39,16 +39,6 @@ ConnectionT = TypeVar('ConnectionT', Connection, AsyncConnection)
39
39
  TransactionT = TypeVar('TransactionT', Transaction, AsyncTransaction)
40
40
  SessionT = TypeVar('SessionT', Session, AsyncSession)
41
41
  SessionTransactionT = TypeVar('SessionTransactionT', SessionTransaction, AsyncSessionTransaction)
42
- DatabaseT = TypeVar('DatabaseT')
43
- DatabaseConnectionT = TypeVar('DatabaseConnectionT')
44
- DatabaseExecuteT = TypeVar('DatabaseExecuteT')
45
- DatabaseSchemaT = TypeVar('DatabaseSchemaT')
46
- DatabaseORMT = TypeVar('DatabaseORMT')
47
- DatabaseORMSessionT = TypeVar('DatabaseSessionT')
48
- DatabaseORMStatementSelectT = TypeVar('DatabaseORMStatementSelectT')
49
- DatabaseORMStatementInsertT = TypeVar('DatabaseORMStatementInsertT')
50
- DatabaseORMStatementUpdateT = TypeVar('DatabaseORMStatementUpdateT')
51
- DatabaseORMStatementDeleteT = TypeVar('DatabaseORMStatementDeleteT')
52
42
 
53
43
 
54
44
  URLParameters = TypedDict(