
| Current Path : /proc/thread-self/root/usr/local/lib/python3.8/dist-packages/traitlets/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/local/lib/python3.8/dist-packages/traitlets/__init__.py |
from warnings import warn
from . import traitlets
from .traitlets import *
from .utils.importstring import import_item
from .utils.decorators import signature_has_traits
from .utils.bunch import Bunch
from ._version import version_info, __version__
class Sentinel(traitlets.Sentinel):
def __init__(self, *args, **kwargs):
super(Sentinel, self).__init__(*args, **kwargs)
warn(
"""
Sentinel is not a public part of the traitlets API.
It was published by mistake, and may be removed in the future.
""",
DeprecationWarning,
stacklevel=2,
)