本文整理汇总了Python中babel.support.Translations._parse方法的典型用法代码示例。如果您正苦于以下问题:Python Translations._parse方法的具体用法?Python Translations._parse怎么用?Python Translations._parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类babel.support.Translations
的用法示例。
在下文中一共展示了Translations._parse方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _parse
# 需要导入模块: from babel.support import Translations [as 别名]
# 或者: from babel.support.Translations import _parse [as 别名]
def _parse(self, fileobj):
TranslationsBase._parse(self, fileobj)
try:
# Got the end of file minus 4 bytes
fileobj.seek(-4, 2)
# Read stored pickled data file pointer position
pickled_data_pointer_pos = struct.unpack('i', fileobj.read())
fileobj.seek(pickled_data_pointer_pos[0])
# Load pickled data
self.client_keys.update(pickle.load(fileobj))
except EOFError:
# Catalog does not contain any pickled data at the end of it
pass