Skip to content

Commit bc19050

Browse files
committed
• utilities.py
- expose many of the functions in html docs - need docstrings
1 parent 64d050a commit bc19050

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/source/Utilities.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Utilities
22
=========
33

44
.. automodule:: psyneulink.core.globals.utilities
5-
:members: set_global_seed
5+
:members: set_global_seed,is_numeric,is_numeric_or_none,is_iterable,norm,sinusoid,scalar_distance,powerset,tensor_power,convert_to_list,flatten_list,nesting_depth,get_args,recursive_update,np_array_less_that_2d,convert_to_np_array,get_value_from_array,is_matrix,underscore_to_camelCase,ReadOnlyOrderedDict,ContentAddressableList,
6+
67
:private-members:
7-
:exclude-members: parameter_spec,optional_parameter_spec,all_within_range,is_matrix, is_matrix_spec,is_numeric,is_numeric_or_none,is_iterable, iscompatible,is_value_spec, is_unit_interval, is_same_function_spec, is_component,is_comparison_operator,Modulation,get_modulationOperation_name, observe_value_at_keypath,norm,sinusoid,scalar_distance,powerset,tensor_power,insert_list,convert_to_list,flatten_list,nesting_depth,get_args,recursive_update,multi_getattr,np_array_less_that_2d,convert_to_np_array,type_match,get_value_from_array,is_matrix,underscore_to_camelCase,append_type_to_name,ReadOnlyOrderedDict,ContentAddressableList,make_readonly_property,get_class_attributes,get_global_seed,
8+
:exclude-members: parameter_spec,optional_parameter_spec,all_within_range,is_matrix, is_matrix_spec,iscompatible,is_value_spec, is_unit_interval, is_same_function_spec, is_component,is_comparison_operator,Modulation,get_modulationOperation_name, observe_value_at_keypath,insert_list,get_args,multi_getattr,type_match,append_type_to_name,make_readonly_property,get_class_attributes,get_global_seed,

psyneulink/core/globals/utilities.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
66
# See the License for the specific language governing permissions and limitations under the License.
77
#
8-
#
8+
"""
9+
Functions usable by all Components, that are not PsyNeuLink-specific.
10+
"""
11+
12+
913
# ************************************************* Utilities *********************************************************
1014

1115
# Utilities that must be accessible to all PsyNeuLink modules, but are not PsyNeuLink-specific

0 commit comments

Comments
 (0)