(path1, path2)
| 63 | |
| 64 | |
| 65 | def FilesAreEqual(path1, path2): |
| 66 | # We check for permissions (useful for executable scripts) and contents. |
| 67 | return (os.stat(path1).st_mode == os.stat(path2).st_mode and |
| 68 | open(path1).read() == open(path2).read()) |
| 69 | |
| 70 | |
| 71 | def ReadV8IPRevision(node_src_path): |