pypi sources contains a bug that breaks dogslow

Issue #6 resolved
Marcin Kuzminski created an issue

In tarbar available in pypi there's some leftover code that prevents dogslow from being properly executed. in the init.py file line 132 {{{ #!python

        else:
            output += 'Full backtrace with local variables:'
            output += '\n\n'
            output += stack(frame, with_locals=True)

            unicode.decode() #this breaks things...
        output = output.encode('utf-8')

}}}

I don't see this in dogslow source

Comments (2)

  1. Log in to comment