From 5314df48bf9550291c86d7f64e852bfd1ae7aefd Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Thu, 29 Aug 2019 13:26:21 -0700 Subject: [PATCH] Catch name errors, in case these symbols are not injected. PiperOrigin-RevId: 266214332 --- .../virtual_root_template_v1.__init__.py | 25 +++++++++++++++++++ .../virtual_root_template_v2.__init__.py | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/tensorflow/virtual_root_template_v1.__init__.py b/tensorflow/virtual_root_template_v1.__init__.py index 785043a1a3f..9603ddca5c0 100644 --- a/tensorflow/virtual_root_template_v1.__init__.py +++ b/tensorflow/virtual_root_template_v1.__init__.py @@ -104,4 +104,29 @@ if not isinstance(_sys.modules[__name__], _deprecation.DeprecationWrapper): _sys.modules[__name__] = _deprecation.DeprecationWrapper( _sys.modules[__name__], "") +# These should not be visible in the main tf module. +try: + del core +except NameError: + pass + +try: + del python +except NameError: + pass + +try: + del compiler +except NameError: + pass + +try: + del tools +except NameError: + pass + +try: + del examples +except NameError: + pass # LINT.ThenChange(//tensorflow/virtual_root_template_v2.__init__.py.oss) diff --git a/tensorflow/virtual_root_template_v2.__init__.py b/tensorflow/virtual_root_template_v2.__init__.py index 7d40733be7b..dc3011c96ee 100644 --- a/tensorflow/virtual_root_template_v2.__init__.py +++ b/tensorflow/virtual_root_template_v2.__init__.py @@ -97,4 +97,29 @@ for _m in _top_level_modules: # We still need all the names that are toplevel on tensorflow_core from tensorflow_core import * +# These should not be visible in the main tf module. +try: + del core +except NameError: + pass + +try: + del python +except NameError: + pass + +try: + del compiler +except NameError: + pass + +try: + del tools +except NameError: + pass + +try: + del examples +except NameError: + pass # LINT.ThenChange(//tensorflow/virtual_root_template_v1.__init__.py.oss)