aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-05 20:22:06 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-05 21:31:45 -0700
commitceb04a1b806563615d68d4617822f057405b3bfb (patch)
treebaa328cd70d7268fe48c9d224d281c392cb7ff00
parent94d27b6852b3e331fd9d64a0533f0fc27af05bfd (diff)
Update generated Python Op docs.
Change: 121645510
-rw-r--r--tensorflow/g3doc/api_docs/python/client.md4
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/tf.Session.md4
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.Server.md15
-rw-r--r--tensorflow/g3doc/api_docs/python/train.md15
4 files changed, 34 insertions, 4 deletions
diff --git a/tensorflow/g3doc/api_docs/python/client.md b/tensorflow/g3doc/api_docs/python/client.md
index 9d2a3bbe92..9b85ccee1d 100644
--- a/tensorflow/g3doc/api_docs/python/client.md
+++ b/tensorflow/g3doc/api_docs/python/client.md
@@ -183,8 +183,8 @@ Calling this method frees all resources associated with the session.
##### Raises:
-
-* <b>`RuntimeError`</b>: If an error occurs while closing the session.
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ closing the TensorFlow session.
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.Session.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.Session.md
index d00b9a9317..62982698dd 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.Session.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.Session.md
@@ -167,8 +167,8 @@ Calling this method frees all resources associated with the session.
##### Raises:
-
-* <b>`RuntimeError`</b>: If an error occurs while closing the session.
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ closing the TensorFlow session.
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.Server.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.Server.md
index 97b3549c80..3f87ed3bf0 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.Server.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.Server.md
@@ -35,6 +35,11 @@ override any information provided in `server_or_cluster_def`.
* <b>`start`</b>: (Optional.) Boolean, indicating whether to start the server
after creating it. Defaults to `True`.
+##### Raises:
+
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ creating the TensorFlow server.
+
- - -
@@ -86,6 +91,11 @@ with tf.Session(server.target):
Starts this server.
+##### Raises:
+
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ starting the TensorFlow server.
+
- - -
@@ -95,4 +105,9 @@ Blocks until the server has shut down.
This method currently blocks forever.
+##### Raises:
+
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ joining the TensorFlow server.
+
diff --git a/tensorflow/g3doc/api_docs/python/train.md b/tensorflow/g3doc/api_docs/python/train.md
index 5e4cd1b721..1f6e60af1a 100644
--- a/tensorflow/g3doc/api_docs/python/train.md
+++ b/tensorflow/g3doc/api_docs/python/train.md
@@ -1588,6 +1588,11 @@ override any information provided in `server_or_cluster_def`.
* <b>`start`</b>: (Optional.) Boolean, indicating whether to start the server
after creating it. Defaults to `True`.
+##### Raises:
+
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ creating the TensorFlow server.
+
- - -
@@ -1639,6 +1644,11 @@ with tf.Session(server.target):
Starts this server.
+##### Raises:
+
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ starting the TensorFlow server.
+
- - -
@@ -1648,6 +1658,11 @@ Blocks until the server has shut down.
This method currently blocks forever.
+##### Raises:
+
+ tf.errors.OpError: Or one of its subclasses if an error occurs while
+ joining the TensorFlow server.
+
- - -