Valentin Briukhanov

Results 17 issues of Valentin Briukhanov

From Abid K. """ what about printing the errors in the same window as the code, just against the line of error ? So people can easily compare the code...

From Luke Lee """ I really like your PEP8 site. A friend and I wrote something similar to this a few years back for the Django Dash. It allows users...

From Billy Wayne McCann """ Could there be an option to download the file once all corrections have been made? That be an excellent feature. """

From Eric """ I have an idea, could you split up real failures from minor failures? For example, I have many lines longer than 79 characters, and don’t care to...

The next statement works in CoCo: ``` ar = [] ar.push(1) ``` But python lists have `.append` method and don't have `.push` method.

`list.pop([index])` with index doesn't work correctly. It always `pop` the last element and ignores `index` argument. ``` array = [1, 2, 3] array.pop(0) hero.debug(array[0]) # got 1 ```

When I do `list("string")` I get `[0, 1, 2, 3, 4, 5 , 6, score]`. Not sure that is "score" but I see it with `debug` or `say`.

bug