(glob_pattern)
| 50 | |
| 51 | |
| 52 | def _glob(glob_pattern): |
| 53 | if platform.system() == "Windows": |
| 54 | return glob.glob(glob_pattern) |
| 55 | else: |
| 56 | return gfile.Glob(glob_pattern) |
| 57 | |
| 58 | |
| 59 | class InconvertibleTensorProto(object): |
no outgoing calls
no test coverage detected