tf.contrib.framework.deprecated_arg_values
Decorator for marking specific function argument values as deprecated.
tf.contrib.framework.deprecated_arg_values( date, instructions, warn_once=True, **deprecated_kwargs )
This decorator logs a deprecation warning whenever the decorated function is called with the deprecated argument values. It has the following format:
Calling
If date
is None, 'after
It also edits the docstring of the function: ' (deprecated arguments)' is appended to the first line of the docstring and a deprecation notice is prepended to the rest of the docstring.
Args | |
---|---|
date | String or None. The date the function is scheduled to be removed. Must be ISO 8601 (YYYY-MM-DD), or None |
instructions | String. Instructions on how to update code using the deprecated function. |
warn_once | If True , warn only the first time this function is called with deprecated argument values. Otherwise, every call (with a deprecated argument value) will log a warning. |
**deprecated_kwargs | The deprecated argument values. |
Returns | |
---|---|
Decorated function or method. |
Raises | |
---|---|
ValueError | If date is not None or in ISO 8601 format, or instructions are empty. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/contrib/framework/deprecated_arg_values