Skip to content
Snippets Groups Projects
Commit b91944e2 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

Merge branch 'v2.0-dev' into fhennig/migrate-tests

parents cf241efc 0c86a9b6
Branches
Tags
1 merge request!409Migrate Test Suite
Pipeline #67881 passed
from .sympyextensions.bit_masks import flag_cond as _flag_cond
from warnings import warn
warn(
"Importing the `pystencils.bit_masks` module is deprecated. "
"Import `flag_cond` from `pystencils.sympyextensions` instead."
)
flag_cond = _flag_cond
from .sympyextensions import TypedSymbol as _TypedSymbol
from .types import create_type as _create_type
from warnings import warn
warn(
"Importing `TypedSymbol` and `create_type` from `pystencils.typing` is deprecated. "
"Import from `pystencils` instead."
)
TypedSymbol = _TypedSymbol
create_type = _create_type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment