From 955f038afbeb81302cea43058078e68574000bce Mon Sep 17 00:00:00 2001 From: Patrick Nguyen Date: Sat, 4 Mar 2017 15:04:11 -0800 Subject: Remove extra exported symbols. Change: 149211889 --- tensorflow/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tensorflow/__init__.py') diff --git a/tensorflow/__init__.py b/tensorflow/__init__.py index 92d390a976..0bca6f8fb8 100644 --- a/tensorflow/__init__.py +++ b/tensorflow/__init__.py @@ -37,3 +37,16 @@ class _LazyContribLoader(object): contrib = _LazyContribLoader() + +del absolute_import +del division +del print_function + +# These symbols appear because we import the python package which +# in turn imports from tensorflow.core and tensorflow.python. They +# must come from this module. So python adds these symbols for the +# resolution to succeed. +# pylint: disable=undefined-variable +del python +del core +# pylint: enable=undefined-variable -- cgit v1.2.3