Skip to content
Snippets Groups Projects
Commit 56ac56d1 authored by Kaushik Kulkarni's avatar Kaushik Kulkarni
Browse files

do not expose keyed_ variants of the mappers under arraycontext module

parent b0af7bfb
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,6 @@ from .container.traversal import ( ...@@ -52,7 +52,6 @@ from .container.traversal import (
rec_multimap_array_container, rec_multimap_array_container,
mapped_over_array_containers, mapped_over_array_containers,
multimapped_over_array_containers, multimapped_over_array_containers,
keyed_map_array_container, rec_keyed_map_array_container,
thaw, freeze, thaw, freeze,
from_numpy, to_numpy) from_numpy, to_numpy)
...@@ -84,7 +83,6 @@ __all__ = ( ...@@ -84,7 +83,6 @@ __all__ = (
"rec_map_array_container", "rec_multimap_array_container", "rec_map_array_container", "rec_multimap_array_container",
"mapped_over_array_containers", "mapped_over_array_containers",
"multimapped_over_array_containers", "multimapped_over_array_containers",
"keyed_map_array_container", "rec_keyed_map_array_container",
"thaw", "freeze", "thaw", "freeze",
"from_numpy", "to_numpy", "from_numpy", "to_numpy",
......
...@@ -73,7 +73,7 @@ def _ary_container_key_stringifier(keys: Tuple[Any, ...]) -> str: ...@@ -73,7 +73,7 @@ def _ary_container_key_stringifier(keys: Tuple[Any, ...]) -> str:
Helper for :meth:`LazilyCompilingFunctionCaller.__call__`. Stringifies an Helper for :meth:`LazilyCompilingFunctionCaller.__call__`. Stringifies an
array-container's component's key. Goals of this routine: array-container's component's key. Goals of this routine:
* No two different keys have the same stringification * No two different keys should have the same stringification
* Stringified key must a valid identifier according to :meth:`str.isidentifier` * Stringified key must a valid identifier according to :meth:`str.isidentifier`
* (informal) Shorter identifiers are preferred * (informal) Shorter identifiers are preferred
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment