We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Datetime encoding is still unknown, though some test cases do exist:
def test_datetime(self): vs = ViewState() vs.raw = b'\xff\x01\x06\x000Po\x9b\x87\xd5\x88' assert vs.decode() == datetime(2018, 3, 11, 22) vs.raw = b'\xff\x01\x06\x00\xf0\xb9\x99d\x88\xd5\x88' assert vs.decode() == datetime(2018, 3, 12, 22)
Proper datetime parsing should be supported
The text was updated successfully, but these errors were encountered:
Decoding should follow the official implementation https://referencesource.microsoft.com/#mscorlib/system/datetime.cs,d1e0507af2af9286
Sorry, something went wrong.
No branches or pull requests
Datetime encoding is still unknown, though some test cases do exist:
Proper datetime parsing should be supported
The text was updated successfully, but these errors were encountered: