diff --git a/pytools/__init__.py b/pytools/__init__.py index acefe3360c55046686175d54027b892736c151f2..bb7994c0a70285f19836a6f1065c8ae794cf4c37 100644 --- a/pytools/__init__.py +++ b/pytools/__init__.py @@ -31,6 +31,7 @@ import sys import logging from typing import ( Any, Callable, Dict, Iterable, List, Optional, Set, Tuple, TypeVar) +import builtins from sys import intern @@ -39,6 +40,11 @@ from sys import intern decorator_module = __import__("decorator", level=0) my_decorator = decorator_module.decorator +# These are deprecated and will go away in 2022. +all = builtins.all +any = builtins.any + + __doc__ = """ A Collection of Utilities =========================