Returns True if the key contains file paths. These are handled by decode_path(). Otherwise False.
(key)
| 836 | |
| 837 | |
| 838 | def p4KeyContainsFilePaths(key): |
| 839 | """Returns True if the key contains file paths. These are handled by decode_path(). |
| 840 | Otherwise False. |
| 841 | """ |
| 842 | return key.startswith('depotFile') or key in ['path', 'clientFile'] |
| 843 | |
| 844 | |
| 845 | def p4KeyWhichCanBeDirectlyDecoded(key): |
no outgoing calls
no test coverage detected