Source code for robot.variables

#  Copyright 2008-2015 Nokia Networks
#  Copyright 2016-     Robot Framework Foundation
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.

"""Implements storing and resolving variables.

This package is mainly for internal usage, but utilities for finding
variables can be used externally as well.
"""

import warnings

from .assigner import VariableAssignment
from .evaluation import evaluate_expression
from .notfound import variable_not_found
from .scopes import VariableScopes
from .search import (search_variable, contains_variable,
                     is_variable, is_assign,
                     is_scalar_variable, is_scalar_assign,
                     is_dict_variable, is_dict_assign,
                     is_list_variable, is_list_assign,
                     VariableIterator)
from .tablesetter import VariableTableValue, DictVariableTableValue
from .variables import Variables


# TODO: Change DeprecationWarning to more visible UserWarning in RF 3.3/4.0
# (whichever comes first) and remove these utils in the next major version.

[docs]def is_var(string, identifiers='$@&'): """Deprecated since RF 3.2. Use ``is_variable`` instead.""" warnings.warn(is_var.__doc__, DeprecationWarning) return is_variable(string, identifiers)
[docs]def is_scalar_var(string): """Deprecated since RF 3.2. Use ``is_scalar_variable`` instead.""" warnings.warn(is_scalar_var.__doc__, DeprecationWarning) return is_scalar_variable(string)
[docs]def is_list_var(string): """Deprecated since RF 3.2. Use ``is_list_variable`` instead.""" warnings.warn(is_list_var.__doc__, DeprecationWarning) return is_list_variable(string)
[docs]def is_dict_var(string): """Deprecated since RF 3.2. Use ``is_dict_variable`` instead.""" warnings.warn(is_dict_var.__doc__, DeprecationWarning) return is_dict_variable(string)
[docs]def contains_var(string, identifiers='$@&'): """Deprecated since RF 3.2. Use ``contains_variable`` instead.""" warnings.warn(contains_var.__doc__, DeprecationWarning) return contains_variable(string, identifiers)