mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69095 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
11 lines
270 B
Python
11 lines
270 B
Python
import sys
|
|
|
|
if sys.version_info < (2,7):
|
|
# The unittest2 package has back-ported most of the new features of the
|
|
# unittest module in Python 2.7, you can get it at PyPI.
|
|
import unittest2
|
|
sys.modules['unittest'] = unittest2
|
|
|
|
else:
|
|
import unittest
|