aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/framework
diff options
context:
space:
mode:
authorGravatar Anna R <annarev@google.com>2018-04-25 11:52:08 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-25 11:57:31 -0700
commitfe965a8502c1a6667ab209dfbfd8b84a6bfb45ee (patch)
treebbd63ad0f2c9ffecac40b914bc5de8014623b652 /tensorflow/contrib/framework
parent3563165fb8328fd0fd6eba88557c25209453339f (diff)
Removing remove_undocumented calls from tensorflow/python.
PiperOrigin-RevId: 194274698
Diffstat (limited to 'tensorflow/contrib/framework')
-rw-r--r--tensorflow/contrib/framework/__init__.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/tensorflow/contrib/framework/__init__.py b/tensorflow/contrib/framework/__init__.py
index 11397e86bd..10d1ecc738 100644
--- a/tensorflow/contrib/framework/__init__.py
+++ b/tensorflow/contrib/framework/__init__.py
@@ -108,6 +108,7 @@ from __future__ import print_function
# pylint: disable=unused-import,wildcard-import
from tensorflow.contrib.framework.python.framework import *
+from tensorflow.contrib.framework.python.framework import nest
from tensorflow.contrib.framework.python.ops import *
# pylint: enable=unused-import,wildcard-import
@@ -126,5 +127,20 @@ from tensorflow.python.ops.init_ops import convolutional_orthogonal_3d
from tensorflow.python.util.all_util import remove_undocumented
_allowed_symbols = ['nest', 'broadcast_to']
-
+_nest_allowed_symbols = [
+ 'assert_same_structure',
+ 'is_sequence',
+ 'flatten',
+ 'flatten_dict_items',
+ 'pack_sequence_as',
+ 'map_structure',
+ 'assert_shallow_structure',
+ 'flatten_up_to',
+ 'map_structure_up_to',
+ 'get_traverse_shallow_structure',
+ 'yield_flat_paths',
+ 'flatten_with_joined_string_paths',
+]
+
+remove_undocumented(nest.__name__, allowed_exception_list=_nest_allowed_symbols)
remove_undocumented(__name__, allowed_exception_list=_allowed_symbols)