tf.contrib.framework.deprecated
Stay organized with collections
Save and categorize content based on your preferences.
Decorator for marking functions or methods deprecated.
tf.contrib.framework.deprecated(
date, instructions, warn_once=True
)
This decorator logs a deprecation warning whenever the decorated function is
called. It has the following format:
(from ) is deprecated and will be removed after .
Instructions for updating:
If date
is None, 'after ' is replaced with 'in a future version'.
will include the class name if it is a method.
It also edits the docstring of the function: ' (deprecated)' 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
|
Boolean. Set to True to warn only the first time the decorated
function is called. Otherwise, every call will log a warning.
|
Returns |
Decorated function or method.
|
Raises |
ValueError
|
If date is not None or in ISO 8601 format, or instructions are
empty.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]