Feedback from user AngelRaposo
Ok, I found the problem in my code.
I was getting the next report as the error to fix in my code:
TypeError: unsupported operand type(s) for +=: 'int' and 'tuple', count_gold, 14
Fail: count_gold(((1),(2,3),(3,3,1),(3,1,5,4),(3,1,3,1,3),(2,2,2,2,2,2),(5,6,4,5,6,4,3)))
Please notice that the test reported as executed starts with (1),... 
This passed on my code but not when we use (1,)... as my code had a bug trying to convert twice to list.
This was confusing, specially taking into account that the trailing comma is required for single-item tuples to disambiguate defining a tuple or an expression surrounded by parentheses.
URL from: http://www.checkio.org/mission/golden-pyramid/solve/
HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36
I was getting the next report as the error to fix in my code:
TypeError: unsupported operand type(s) for +=: 'int' and 'tuple', count_gold, 14
Fail: count_gold(((1),(2,3),(3,3,1),(3,1,5,4),(3,1,3,1,3),(2,2,2,2,2,2),(5,6,4,5,6,4,3)))
Please notice that the test reported as executed starts with (1),... 
This passed on my code but not when we use (1,)... as my code had a bug trying to convert twice to list.
This was confusing, specially taking into account that the trailing comma is required for single-item tuples to disambiguate defining a tuple or an expression surrounded by parentheses.
URL from: http://www.checkio.org/mission/golden-pyramid/solve/
HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36