2015-11-13 00:15:26 +03:00
|
|
|
#!/usr/bin/env python
|
2011-11-21 09:02:46 +04:00
|
|
|
|
2018-04-19 05:13:33 +03:00
|
|
|
# This script should work in python 2 *or* 3. It loads the main code using
|
|
|
|
# python_selector, which may pick a different version.
|
2011-11-21 09:02:46 +04:00
|
|
|
|
2018-01-11 23:46:13 +03:00
|
|
|
from tools import python_selector
|
2015-11-16 22:21:44 +03:00
|
|
|
|
2015-11-13 00:15:26 +03:00
|
|
|
import sys
|
2011-11-21 09:02:46 +04:00
|
|
|
|
2018-01-11 23:46:13 +03:00
|
|
|
if __name__ == '__main__':
|
2018-04-19 05:13:33 +03:00
|
|
|
python_selector.run(__file__)
|