compat.py 346 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. # Copyright (c) 2021, Brandon Nielsen
  3. # All rights reserved.
  4. #
  5. # This software may be modified and distributed under the terms
  6. # of the BSD license. See the LICENSE file for details.
  7. import sys
  8. PY2 = sys.version_info[0] == 2
  9. if PY2:
  10. import mock # pylint: disable=import-error
  11. else:
  12. from unittest import mock