Черно и бяло
- Краен срок
- 23.03.2016 13:00
Срокът за предаване на решения е отминал
Черно и бяло
За целта на това предизвикателство ще трябва да се поразровите малко и да
откриете начин да обърнем нормална картинка до черно-бяла такава (grayscale).
Ще очакваме да напишете декоратор grayscale
, за функциите rotate_left
,
rotate_right
, invert
, darken
и lighten
от първа
задача.
Пример:
Написали сме си rotate_left
от първа задача
(ако не сте, можете да използвате някое решение на ваш колега, тъй като са вече
публични) и изглежда така:
def rotate_left(image):
return list(zip(*image))[::-1]
Ще използваме отново снимка на една малка панда:

И ако я подадем на rotate_left
използвайки
render.py
:
python render.py panda.jpg rotate_left
получаваме:

Ако обаче декорираме rotate_left
с @grayscale
:
@grayscale
def rotate_left(image):
return list(zip(*image))[::-1]
резултатът ще бъде:

Решения
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Теодор Тошков
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Кристина Христакиева
....
----------------------------------------------------------------------
Ran 4 tests in 0.055s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Николай Желязков
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Петър Иванов
....
----------------------------------------------------------------------
Ran 4 tests in 0.066s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Тодор Димов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Георги Данков
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=4)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Данислав Киров
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Мартин Терзийски
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Илия Жечев
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Борис Алтънов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Тина Накова
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Ивета Чампоева
FFFF
======================================================================
FAIL: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 8 != 0
======================================================================
FAIL: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 238 != 255
======================================================================
FAIL: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 136 != 127
======================================================================
FAIL: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 17 != 0
----------------------------------------------------------------------
Ran 4 tests in 0.056s
FAILED (failures=4)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Алекс Николов
....
----------------------------------------------------------------------
Ran 4 tests in 0.059s
OK
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Бисер Кръстев
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale() takes 0 positional arguments but 1 was given
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale() takes 0 positional arguments but 1 was given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale() takes 0 positional arguments but 1 was given
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale() takes 0 positional arguments but 1 was given
----------------------------------------------------------------------
Ran 4 tests in 0.053s
FAILED (errors=4)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Десислава Цветкова
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Кристофър Митов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Даниел Делчев
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Николай Бабулков
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=4)
-
Некоректно
- 3 успешни тест(а)
- 1 неуспешни тест(а)
Йоан Динков
...E
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'tuple' object does not support item assignment
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=1)
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Денис Михайлов
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: decorator() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: decorator() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.053s
FAILED (errors=2)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Андрей Иванов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Александрина Ламбова
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: <lambda>() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: <lambda>() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.059s
FAILED (errors=2)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Георги Иванов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Николай Лазаров
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Славена Теодосиева
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Виктор Маринов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Веселин Иванов
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Николай Мантаров
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Емануил Антонов
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: helper() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: helper() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=2)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Марина Георгиева
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Емил Илиев
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: convert_grayscale() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: convert_grayscale() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.053s
FAILED (errors=2)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Даниел Шушков
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Хризантема Станчева
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Божидар Карааргиров
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: darken() missing 1 required positional argument: 'percent'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: invert() missing 1 required positional argument: 'image'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: lighten() missing 1 required positional argument: 'percent'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: rotate_left() missing 1 required positional argument: 'image'
----------------------------------------------------------------------
Ran 4 tests in 0.053s
FAILED (errors=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Яница Велевска
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.677s
FAILED (errors=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Димо Дрънгов
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Светомир Стоименов
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Галин Ангелов
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'int' object is not subscriptable
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'int' object is not subscriptable
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'int' object is not subscriptable
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'int' object is not subscriptable
----------------------------------------------------------------------
Ran 4 tests in 0.053s
FAILED (errors=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Марианна Владимирова
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Стилиян Стоянов
FFFF
======================================================================
FAIL: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 3 != 0
======================================================================
FAIL: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 3 != 0
======================================================================
FAIL: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 3 != 0
======================================================================
FAIL: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AssertionError: 3 != 0
----------------------------------------------------------------------
Ran 4 tests in 0.054s
FAILED (failures=4)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Ивелин Тодоров
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
AttributeError: module 'solution' has no attribute 'grayscale'
----------------------------------------------------------------------
Ran 4 tests in 0.060s
FAILED (errors=4)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Симеон Ролев
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Марио Даскалов
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale_transformation() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale_transformation() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.061s
FAILED (errors=2)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Александър Наджарян
....
----------------------------------------------------------------------
Ran 4 tests in 0.052s
OK
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Любослава Димитрова
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: convert() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: convert() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.060s
FAILED (errors=2)
-
Коректно
- 4 успешни тест(а)
- 0 неуспешни тест(а)
Христо Ралев
....
----------------------------------------------------------------------
Ran 4 tests in 0.065s
OK
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Димитър Керезов
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale_wrapper() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: grayscale_wrapper() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.053s
FAILED (errors=2)
-
Некоректно
- 0 успешни тест(а)
- 4 неуспешни тест(а)
Христо Владев
EEEE
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'function' object is not iterable
======================================================================
ERROR: test_grayscale_invert (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'function' object is not iterable
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'function' object is not iterable
======================================================================
ERROR: test_grayscale_rotate_left (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: 'function' object is not iterable
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=4)
-
Некоректно
- 2 успешни тест(а)
- 2 неуспешни тест(а)
Явор Михайлов
E.E.
======================================================================
ERROR: test_grayscale_darken (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: wrapper() takes 1 positional argument but 2 were given
======================================================================
ERROR: test_grayscale_lighten (test.TestImages)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/rails/pyfmi-2016/releases/20160307095126/lib/language/python/runner.py", line 67, in thread
raise result
TypeError: wrapper() takes 1 positional argument but 2 were given
----------------------------------------------------------------------
Ran 4 tests in 0.052s
FAILED (errors=2)