Merge pull request #21099 from edx/INCR-429

INCR-429 python3 compatibility
This commit is contained in:
Ayub
2019-07-30 12:07:28 +05:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
"""Code run by pylint before running any tests."""
# Patch the xml libs before anything else.
from __future__ import absolute_import
from safe_lxml import defuse_xml_libs
defuse_xml_libs()

View File

@@ -1,6 +1,8 @@
"""
General testing utilities.
"""
from __future__ import absolute_import
import functools
import sys
from contextlib import contextmanager