We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2990e81 commit 96d555eCopy full SHA for 96d555e
tensorflow/__init__.py
@@ -37,3 +37,16 @@ def __getattr__(self, item):
37
38
39
contrib = _LazyContribLoader()
40
+
41
+del absolute_import
42
+del division
43
+del print_function
44
45
+# These symbols appear because we import the python package which
46
+# in turn imports from tensorflow.core and tensorflow.python. They
47
+# must come from this module. So python adds these symbols for the
48
+# resolution to succeed.
49
+# pylint: disable=undefined-variable
50
+del python
51
+del core
52
+# pylint: enable=undefined-variable
0 commit comments