Update generated Python Op docs.
Change: 120142925
diff --git a/tensorflow/g3doc/api_docs/python/framework.md b/tensorflow/g3doc/api_docs/python/framework.md
index 44886ec..ae045fd 100644
--- a/tensorflow/g3doc/api_docs/python/framework.md
+++ b/tensorflow/g3doc/api_docs/python/framework.md
@@ -398,13 +398,20 @@
Returns a list of values in the collection with the given `name`.
+This is different from `get_collection_ref()` which always returns the
+actual collection list if it exists in that it returns a new list each time
+it is called.
+
##### Args:
* <b>`name`</b>: The key for the collection. For example, the `GraphKeys` class
contains many standard names for collections.
* <b>`scope`</b>: (Optional.) If supplied, the resulting list is filtered to include
- only items whose name begins with this string.
+ only items whose `name` attribute matches using `re.match`. Items
+ without a `name` attribute are never returned if a scope is supplied and
+ the choice or `re.match` means that a `scope` without special tokens
+ filters by prefix.
##### Returns:
@@ -1798,7 +1805,10 @@
* <b>`key`</b>: The key for the collection. For example, the `GraphKeys` class
contains many standard names for collections.
* <b>`scope`</b>: (Optional.) If supplied, the resulting list is filtered to include
- only items whose name begins with this string.
+ only items whose `name` attribute matches using `re.match`. Items
+ without a `name` attribute are never returned if a scope is supplied and
+ the choice or `re.match` means that a `scope` without special tokens
+ filters by prefix.
##### Returns: