Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 800824
Collapse All | Expand All

(-)tensorflow-2.5.0_old/tensorflow/core/kernels/example_parsing_ops.cc (-1 / +1 lines)
Lines 1218-1224 class DecodeJSONExampleOp : public OpKer Link Here
1218
          resolver_.get(), "type.googleapis.com/tensorflow.Example", &in, &out);
1218
          resolver_.get(), "type.googleapis.com/tensorflow.Example", &in, &out);
1219
      OP_REQUIRES(ctx, status.ok(),
1219
      OP_REQUIRES(ctx, status.ok(),
1220
                  errors::InvalidArgument("Error while parsing JSON: ",
1220
                  errors::InvalidArgument("Error while parsing JSON: ",
1221
                                          string(status.error_message())));
1221
                                          string(status.message())));
1222
    }
1222
    }
1223
  }
1223
  }
1224
1224
(-)tensorflow-2.5.0_old/tensorflow/python/__init__.py (-1 / +1 lines)
Lines 37-44 import traceback Link Here
37
# go/tf-wildcard-import
37
# go/tf-wildcard-import
38
# pylint: disable=wildcard-import,g-bad-import-order,g-import-not-at-top
38
# pylint: disable=wildcard-import,g-bad-import-order,g-import-not-at-top
39
39
40
from tensorflow.python.eager import context
41
from tensorflow.python import pywrap_tensorflow as _pywrap_tensorflow
40
from tensorflow.python import pywrap_tensorflow as _pywrap_tensorflow
41
from tensorflow.python.eager import context
42
42
43
# pylint: enable=wildcard-import
43
# pylint: enable=wildcard-import
44
44

Return to bug 800824