Home
last modified time | relevance | path

Searched refs:changelog_file (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/checkout/
Dchangelog.py102 def parse_latest_entry_from_file(changelog_file): argument
110 first_line = changelog_file.readline()
116 for line in changelog_file:
126 changelog_file = codecs.open(self.path, "r", "utf-8")
128 return self.parse_latest_entry_from_file(changelog_file)
130 changelog_file.close()
Dchangelog_unittest.py96 changelog_file = StringIO(changelog_contents)
97 latest_entry = ChangeLog.parse_latest_entry_from_file(changelog_file)
106 changelog_file = StringIO(changelog_contents)
107 latest_entry = ChangeLog.parse_latest_entry_from_file(changelog_file)
Dapi.py59 changelog_file = StringIO.StringIO(changelog_contents.decode("utf-8", "ignore"))
60 return ChangeLog.parse_latest_entry_from_file(changelog_file)