Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
[qa] Bug fixes and refactor #7778
Conversation
jonasschnelli
added
the
Tests
label
Mar 31, 2016
MarcoFalke
added some commits
Mar 20, 2016
|
Extended tests pass and enabling python deprecation warnings only give the following "false positive" warnings:
|
laanwj
and 1 other
commented on an outdated diff
Apr 2, 2016
| else: | ||
| - r = chr(255) + struct.pack("<Q", len(l)) | ||
| + r = struct.pack("B", 255) + struct.pack("<Q", len(l)) |
MarcoFalke
Member
|
|
Tested ACK 4444806 |
MarcoFalke commentedMar 31, 2016
It is not possible to switch to py3 without fixing those bugs or doing the refactor. (E.g. python2 will silently cast floats to ints where needed, but I'd rather explicitly use ints)
To aid review, each commit in this pull will either fix bugs or do some refactor.