When I try to run the python koans, I don't get the colors, instead I get the ANSI color codes. I want to get the colors. It seems to be using colorama under the hood. I try to run colorama sample code in the interpeter and get syntax errors and/or assert errors.

Second if can't fix first: How do I get to strip out the ansi color codes. I tried various values of strip=True, and Convert=False to no avail.

Please help.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Sorry about that!

The ansi colors are a very recent feature, and I haven't got around to adding a command line option to turn it off yet. Its coming very soon though!

In the meantime taking a slightly older version would get around the problem. Here's how you can do it through mercurial:

hg clone https://gregmalcolm@bitbucket.org/gregmalcolm/python_koans
hg update -r 80

and this should work for git:

git clone http://github.com/gregmalcolm/python_koans
git checkout -b nocolor a410591b5aaeec57a4a8

This is actually the first complaint I've had of the color not working. What OS/terminal are you running from?

link|improve this answer
I am running Windows 7 Home Premium. – jvervoorn Oct 3 '10 at 16:33
I just pushed out a fix (in runner/sensei.py). Can you let me know if that fixed it for you you? – Greg Malcolm Oct 4 '10 at 0:41
Sorry it took so long to write back, was with wife at her sisters house. Her sister just had 2 surgeries back to back. Well Anyway, back at my computer, and can try again. – jvervoorn Oct 10 '10 at 10:44
I can run from command line, but from idle I get an assertion error. – jvervoorn Oct 10 '10 at 10:45
Don't know if I can paste the whole message: Traceback (most recent call last): File "C:\Users\John\Downloads\python_koans-tip\python_koans-tip\python 3\contemplate_koans.py", line 25, in <module> Mountain().walk_the_path(sys.argv) .......... File "C:\Users\John\Downloads\python_koans-tip\python_koans-tip\python 3\libs\colorama\winterm.py", line 68, in set_console win32.SetConsoleTextAttribute(handle, attrs) File "C:\Users\John\Downloads\python_koans-tip\python_koans-tip\python 3\libs\colorama\win32.py", line 66, in SetConsoleTextAttribute assert success AssertionError – jvervoorn Oct 10 '10 at 10:46
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.