Open usr-ein opened 7 years ago
Confirm pull #8 will partially fix Python3 support (ok for production use).
This is only a partial fix because the project cannot still be used in development (test.py
also is not compatible with Python3).
I proposed some changes to the pull request owner. With this changes, the pull will fully add Python3 support.
This bug doesn't exist anymore in latest version (v0.3.0).
The implementation now passes in all test cases (tests/tests.py
) in both Python2 and Python3.
@gleichda or @lbenitez000 , I think you can close them now.
Hello, I've just found a bug whilst using your module:
Here (line 118 of trparse.py), you try to iterate through the result of a filter, which is returning me:
So to fix this I had to simply modify this on line 115: From :
probes_data = filter(lambda s: s.lower() != 'ms', probes_data)
toprobes_data = list(filter(lambda s: s.lower() != 'ms', probes_data))
.It all works perfectly fine now, thanks for creating this module, it make my code much cleaner and my life easier so I thought I'd help you with that.
Cheers.