-
Notifications
You must be signed in to change notification settings - Fork 2
/
contemplate_koans.py
37 lines (31 loc) · 1.27 KB
/
contemplate_koans.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Acknowledgment:
#
# Python Koans is a port of Ruby Koans originally written by Jim Weirich
# and Joe O'brien of Edgecase. There are some differences and tweaks specific
# to the Python language, but a great deal of it has been copied wholesale.
# So thank guys!
#
import unittest
import sys
if __name__ == '__main__':
if sys.version_info >= (3, 0):
print("\nThis is the Python 2 version of Python Koans, but you are " +
"running it with Python 3 or newer!\n\n"
"Did you accidentally use the wrong python script? \nTry:\n\n" +
" python contemplate_koans.py\n")
else:
if sys.version_info < (2, 6):
print("\n" +
"********************************************************\n" +
"WARNING:\n" +
"This version of Python Koans was designed for " +
"Python 2.6 or greater.\n" +
"Your version of Python is older, so this is unlikely " +
"to work!\n\n" +
"But lets see how far we get...\n" +
"********************************************************\n")
from runner.mountain import Mountain
Mountain().walk_the_path(sys.argv)