Ticket #390 (closed defect: fixed)
encoding/decoding dates prior to 1970 with Windows
| Reported by: | arman0 | Owned by: | nick |
|---|---|---|---|
| Priority: | major | Milestone: | 0.4 |
| Component: | Decoder | Version: | 0.3.1 |
| Keywords: | Cc: | ||
| Fixed in revision: | Branch: | ||
| Author: |
Description (last modified by thijs) (diff)
The following example results in an exception:
from pyamf import amf3, util from datetime import date buf = util.BufferedByteStream() encoder = amf3.Encoder(buf, context=amf3.Context()) encoder.writeElement(date(1969, 1, 1)) t = buf.getvalue() x = amf3.Decoder(t) x.readElement()
Change History
Note: See
TracTickets for help on using
tickets.


