pool.manage(dbapi).connect() so that serialization
of args is not necessary.
messages use the same improved formatting.
[ticket:2243]
+ - Added optional "sa_pool_key" argument to
+ pool.manage(dbapi).connect() so that serialization
+ of args is not necessary.
+
- types
- Extra keyword arguments to the base Float
type beyond "precision" and "asdecimal" are ignored;
pass
def _serialize(self, *args, **kw):
+ if "sa_pool_key" in kw:
+ return kw['sa_pool_key']
+
return tuple(
list(args) +
[(k, kw[k]) for k in sorted(kw)]