aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph/utils/multiple_dispatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/autograph/utils/multiple_dispatch.py')
-rw-r--r--tensorflow/python/autograph/utils/multiple_dispatch.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tensorflow/python/autograph/utils/multiple_dispatch.py b/tensorflow/python/autograph/utils/multiple_dispatch.py
index 33f521db2c..107c8f7a68 100644
--- a/tensorflow/python/autograph/utils/multiple_dispatch.py
+++ b/tensorflow/python/autograph/utils/multiple_dispatch.py
@@ -22,16 +22,6 @@ from tensorflow.python.autograph.utils.type_check import is_tensor
from tensorflow.python.ops import control_flow_ops
-def dynamic_is(left, right):
- # TODO(alexbw) if we're sure we should leave 'is' in place,
- # then change the semantics in converters/logical_expressions.py
- return left is right
-
-
-def dynamic_is_not(left, right):
- return left is not right
-
-
def run_cond(condition, true_fn, false_fn):
"""Type-dependent functional conditional.