Bug 1473498 - Fix Py3 compatibility issue in python/mozbuild/mozbuild/testing.py r=nalexander

Depends on D37763

Differential Revision: https://phabricator.services.mozilla.com/D37764

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew Halberstadt 2019-07-16 15:14:49 +00:00
parent 39c3fe6605
commit 63b68be0e1

View File

@ -4,17 +4,19 @@
from __future__ import absolute_import, print_function, unicode_literals
import cPickle as pickle
import os
import sys
import mozpack.path as mozpath
try:
import cPickle as pickle
except ImportError:
import pickle
from mozpack.copier import FileCopier
from mozpack.manifests import InstallManifest
import manifestparser
import mozpack.path as mozpath
from mozpack.copier import FileCopier
from mozpack.manifests import InstallManifest
# These definitions provide a single source of truth for modules attempting
# to get a view of all tests for a build. Used by the emitter to figure out