File tree Expand file tree Collapse file tree 8 files changed +289
-259
lines changed Expand file tree Collapse file tree 8 files changed +289
-259
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ sqlalchemy.util.WeakSequence.__init__
24
24
# not always present
25
25
sqlalchemy.engine.Engine.logging_name # initialized if not None
26
26
sqlalchemy.engine.base.Engine.logging_name # initialized if not None
27
+ sqlalchemy.sql.lambdas.PyWrapper.__clause_element__
27
28
sqlalchemy.testing.util.non_refcount_gc_collect
28
29
29
30
# replaced at runtime
@@ -528,6 +529,7 @@ sqlalchemy.dialects.postgresql.Insert
528
529
sqlalchemy.dialects.postgresql.JSON
529
530
sqlalchemy.dialects.postgresql.JSONB
530
531
sqlalchemy.dialects.postgresql.MACADDR
532
+ sqlalchemy.dialects.postgresql.MACADDR8
531
533
sqlalchemy.dialects.postgresql.MONEY
532
534
sqlalchemy.dialects.postgresql.NUMERIC
533
535
sqlalchemy.dialects.postgresql.NUMRANGE
@@ -582,6 +584,7 @@ sqlalchemy.dialects.postgresql.base.INET
582
584
sqlalchemy.dialects.postgresql.base.INTEGER
583
585
sqlalchemy.dialects.postgresql.base.INTERVAL
584
586
sqlalchemy.dialects.postgresql.base.MACADDR
587
+ sqlalchemy.dialects.postgresql.base.MACADDR8
585
588
sqlalchemy.dialects.postgresql.base.MONEY
586
589
sqlalchemy.dialects.postgresql.base.NUMERIC
587
590
sqlalchemy.dialects.postgresql.base.OID
Original file line number Diff line number Diff line change 1
- version = " 1.4.45 "
1
+ version = " 1.4.46 "
2
2
extra_description = """ \
3
3
The `sqlalchemy-stubs` package is an alternative to this package and also \
4
4
includes a mypy plugin for more precise types.\
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ from .base import (
16
16
INTEGER as INTEGER ,
17
17
INTERVAL as INTERVAL ,
18
18
MACADDR as MACADDR ,
19
+ MACADDR8 as MACADDR8 ,
19
20
MONEY as MONEY ,
20
21
NUMERIC as NUMERIC ,
21
22
OID as OID ,
@@ -59,6 +60,7 @@ __all__ = (
59
60
"UUID" ,
60
61
"BIT" ,
61
62
"MACADDR" ,
63
+ "MACADDR8" ,
62
64
"MONEY" ,
63
65
"OID" ,
64
66
"REGCLASS" ,
Original file line number Diff line number Diff line change @@ -43,6 +43,11 @@ class MACADDR(sqltypes.TypeEngine):
43
43
44
44
PGMacAddr = MACADDR
45
45
46
+ class MACADDR8 (sqltypes .TypeEngine ):
47
+ __visit_name__ : str
48
+
49
+ PGMacAddr8 = MACADDR8
50
+
46
51
class MONEY (sqltypes .TypeEngine ):
47
52
__visit_name__ : str
48
53
You can’t perform that action at this time.
0 commit comments