Skip to content
Snippets Groups Projects

MAINT: LinkAhead rename

Closed Henrik tom Wörden requested to merge f-linkahead-rename into dev
3 files
+ 33
0
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -28,6 +28,7 @@ from __future__ import absolute_import, print_function, unicode_literals
import logging
import ssl
import sys
from warnings import warn
import warnings
from builtins import str # pylint: disable=redefined-builtin
from errno import EPIPE as BrokenPipe
@@ -294,6 +295,14 @@ class _DefaultLinkAheadServerConnection(LinkAheadServerConnection):
self._session.verify = verify
class _DefaultCaosDBServerConnection(_DefaultLinkAheadServerConnection):
def __init__(self, *args, **kwargs):
warn(("The name _DefaultCaosDBServerConnection is deprecated. Please use "
"_DefaultLinkAheadServerConnection."),
DeprecationWarning)
super().__init__(*args, **kwargs)
def _make_conf(*conf):
"""_make_conf.
Loading