本文整理匯總了Python中luigi.File.close方法的典型用法代碼示例。如果您正苦於以下問題:Python File.close方法的具體用法?Python File.close怎麽用?Python File.close使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類luigi.File
的用法示例。
在下文中一共展示了File.close方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_gzip
# 需要導入模塊: from luigi import File [as 別名]
# 或者: from luigi.File import close [as 別名]
def test_gzip(self):
t = File(self.path, luigi.format.Gzip)
p = t.open('w')
test_data = 'test'
p.write(test_data)
print self.path
self.assertFalse(os.path.exists(self.path))
p.close()
self.assertTrue(os.path.exists(self.path))
# Using gzip module as validation
f = gzip.open(self.path, 'rb')
self.assertTrue(test_data == f.read())
f.close()
# Verifying our own gzip reader
f = File(self.path, luigi.format.Gzip).open('r')
self.assertTrue(test_data == f.read())
f.close()
示例2: test_bzip2
# 需要導入模塊: from luigi import File [as 別名]
# 或者: from luigi.File import close [as 別名]
def test_bzip2(self):
t = File(self.path, luigi.format.Bzip2)
p = t.open('w')
test_data = 'test'
p.write(test_data)
print self.path
self.assertFalse(os.path.exists(self.path))
p.close()
self.assertTrue(os.path.exists(self.path))
# Using bzip module as validation
f = bz2.BZ2File(self.path, 'rb')
self.assertTrue(test_data == f.read())
f.close()
# Verifying our own bzip2 reader
f = File(self.path, luigi.format.Bzip2).open('r')
self.assertTrue(test_data == f.read())
f.close()