diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-05-15 15:15:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-05-15 15:15:45 +0000 |
commit | 393fa8417d5bcf75f3ea48e5cbb0198a3bd7a5a8 (patch) | |
tree | 16b165b1844f467aee657be1c9b3b4bf6908336e /lib | |
parent | 0fe13a5fbe9b35255c119ec897347c66f06ca0d1 (diff) | |
parent | 3f08d54d30b139b5925772b40778746b94cc4f76 (diff) | |
download | sqlalchemy-393fa8417d5bcf75f3ea48e5cbb0198a3bd7a5a8.tar.gz |
Merge "Adjust documentation wording for firebird and sybase"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sqlalchemy/dialects/firebird/base.py | 14 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/sybase/base.py | 15 |
2 files changed, 16 insertions, 13 deletions
diff --git a/lib/sqlalchemy/dialects/firebird/base.py b/lib/sqlalchemy/dialects/firebird/base.py index f6d50023b..680968b9e 100644 --- a/lib/sqlalchemy/dialects/firebird/base.py +++ b/lib/sqlalchemy/dialects/firebird/base.py @@ -12,13 +12,14 @@ r""" .. note:: - The Firebird dialect within SQLAlchemy **is not currently supported**. The - dialect is not tested within continuous integration and is likely to have - many issues and caveats not currently handled. + The Firebird dialect within SQLAlchemy **is not currently supported**. + It is not tested within continuous integration and is likely to have + many issues and caveats not currently handled. Consider using the + `external dialect <https://github.com/pauldex/sqlalchemy-firebird>`_ + instead. -.. deprecated:: 1.4 This dialect is deprecated and will be removed - in a future version. This dialect is superseded by the external - version available at external-dialect_. +.. deprecated:: 1.4 The internal Firebird dialect is deprecated and will be + removed in a future version. Use the external dialect. Firebird Dialects ----------------- @@ -77,7 +78,6 @@ the SQLAlchemy ``returning()`` method, such as:: .. _dialects: http://mc-computing.com/Databases/Firebird/SQL_Dialect.html -.. _external-dialect: https://github.com/pauldex/sqlalchemy-firebird """ import datetime diff --git a/lib/sqlalchemy/dialects/sybase/base.py b/lib/sqlalchemy/dialects/sybase/base.py index 634cf0da4..77ebfac93 100644 --- a/lib/sqlalchemy/dialects/sybase/base.py +++ b/lib/sqlalchemy/dialects/sybase/base.py @@ -16,12 +16,14 @@ .. note:: - The Sybase dialect within SQLAlchemy **is not currently supported**. The - dialect is not tested within continuous integration and is likely to have - many issues and caveats not currently handled. + The Sybase dialect within SQLAlchemy **is not currently supported**. + It is not tested within continuous integration and is likely to have + many issues and caveats not currently handled. Consider using the + `external dialect <https://github.com/gordthompson/sqlalchemy-sybase>`_ + instead. -.. deprecated:: 1.4 The Sybase dialect is deprecated and will be removed - in a future version. +.. deprecated:: 1.4 The internal Sybase dialect is deprecated and will be + removed in a future version. Use the external dialect. """ @@ -654,7 +656,8 @@ class SybaseDialect(default.DefaultDialect): def __init__(self, *args, **kwargs): util.warn_deprecated( "The Sybase dialect is deprecated and will be removed " - "in a future version.", + "in a future version. This dialect is superseded by the external " + "dialect https://github.com/gordthompson/sqlalchemy-sybase.", version="1.4", ) super(SybaseDialect, self).__init__(*args, **kwargs) |