aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/client.md
diff options
context:
space:
mode:
authorGravatar Geoffrey Irving <geoffreyi@google.com>2016-01-06 14:09:18 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2016-01-06 14:09:18 -0800
commitfd26a93ee1799c78975a02c7bba58b3e52357fb3 (patch)
tree4a9f07d35a650feda2e7ed97a4eca7f7c488c710 /tensorflow/g3doc/api_docs/python/client.md
parentd5fcafba94876c14057f8f928bb9276e285c9f94 (diff)
Don't expose tf.ops in __all__.
It was already undocumented, and now it's invisible. This required exposing reset_default_graph and register_tensor_conversion_function as public. Fixes #266. Change: 111542779
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/client.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/client.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/g3doc/api_docs/python/client.md b/tensorflow/g3doc/api_docs/python/client.md
index 4feeb7556a..1c0c92ffbe 100644
--- a/tensorflow/g3doc/api_docs/python/client.md
+++ b/tensorflow/g3doc/api_docs/python/client.md
@@ -317,7 +317,7 @@ Returns the default session for the current thread.
The returned `Session` will be the innermost session on which a
`Session` or `Session.as_default()` context has been entered.
-*N.B.* The default session is a property of the current thread. If you
+NOTE: The default session is a property of the current thread. If you
create a new thread, and wish to use the default session in that
thread, you must explicitly add a `with sess.as_default():` in that
thread's function.