本文整理汇总了Python中backports.lzma方法的典型用法代码示例。如果您正苦于以下问题:Python backports.lzma方法的具体用法?Python backports.lzma怎么用?Python backports.lzma使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类backports
的用法示例。
在下文中一共展示了backports.lzma方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: import_lzma
# 需要导入模块: import backports [as 别名]
# 或者: from backports import lzma [as 别名]
def import_lzma():
""" import lzma from the std library """
import lzma
return lzma
示例2: setUp
# 需要导入模块: import backports [as 别名]
# 或者: from backports import lzma [as 别名]
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
test_file = self._GetTestFilePath(['syslog.lzma'])
self._SkipIfPathNotExists(test_file)
self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
self._compressed_stream_path_spec = (
compressed_stream_path_spec.CompressedStreamPathSpec(
compression_method=definitions.COMPRESSION_METHOD_LZMA,
parent=self._os_path_spec))