[Webkit-unassigned] [Bug 50901] Add remote zip file handling to webkitpy.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 6 13:22:30 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=50901





--- Comment #6 from Eric Seidel <eric at webkit.org>  2011-01-06 13:22:30 PST ---
(From update of attachment 77865)
View in context: https://bugs.webkit.org/attachment.cgi?id=77865&action=review

> Tools/Scripts/webkitpy/common/system/filesystem_mock.py:116
> +    def files_under(self, path):
> +        results = []
> +        for file in self.files:
> +            if file.startswith(path):
> +                results.append(file)
> +        return results

This is  just [file for file in self.files if file.startswith(path)]

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list