зеркало из https://github.com/mozilla/gecko-dev.git
Bug 919391 - Fix gzip_xml.py not finding resource_timing_test0.xml r=jgraham
MozReview-Commit-ID: 97JUyEvzG1V
This commit is contained in:
Родитель
00c7d04549
Коммит
bf7ceabd0e
|
@ -1,8 +1,10 @@
|
|||
import gzip as gzip_module
|
||||
from cStringIO import StringIO
|
||||
import os
|
||||
|
||||
def main(request, response):
|
||||
f = open('resource-timing/resources/resource_timing_test0.xml', 'r')
|
||||
dir_path = os.path.dirname(os.path.realpath(__file__))
|
||||
f = open(dir_path+'/resource_timing_test0.xml', 'r')
|
||||
output = f.read()
|
||||
|
||||
out = StringIO()
|
||||
|
|
Загрузка…
Ссылка в новой задаче