From 0f2a4f9eebad0554a5f4063c60705c991e6ab33d Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 7 Mar 2019 09:43:43 -0600 Subject: [PATCH] Make clear that memo argument to Region.translate is internal --- openmc/region.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/openmc/region.py b/openmc/region.py index ffcbeea600..e8e42776c1 100644 --- a/openmc/region.py +++ b/openmc/region.py @@ -241,7 +241,8 @@ class Region(metaclass=ABCMeta): vector : iterable of float Direction in which region should be translated memo : dict or None - Dictionary used for memoization + Dictionary used for memoization. This parameter is used internally + and should not be specified by the user. Returns ------- @@ -373,7 +374,8 @@ class Intersection(Region, MutableSequence): vector : iterable of float Direction in which region should be translated memo : dict or None - Dictionary used for memoization + Dictionary used for memoization. This parameter is used internally + and should not be specified by the user. Returns ------- @@ -505,7 +507,8 @@ class Union(Region, MutableSequence): vector : iterable of float Direction in which region should be translated memo : dict or None - Dictionary used for memoization + Dictionary used for memoization. This parameter is used internally + and should not be specified by the user. Returns ------- @@ -646,7 +649,8 @@ class Complement(Region): vector : iterable of float Direction in which region should be translated memo : dict or None - Dictionary used for memoization + Dictionary used for memoization. This parameter is used internally + and should not be specified by the user. Returns -------