We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7299ee5 commit 6a35bfaCopy full SHA for 6a35bfa
pandas/io/rdata/_rdata.pyx
@@ -344,6 +344,7 @@ cdef class LibrdataWriter():
344
dict rdict
345
dict rformats
346
dict rtypes
347
+ long long timeval
348
bytes file_name
349
bytes tbl_name
350
rdata_writer_t *writer
@@ -367,7 +368,8 @@ cdef class LibrdataWriter():
367
368
369
if vtype == RDATA_TYPE_TIMESTAMP:
370
for k, v in vdata.items():
- rdata_append_timestamp_value(self.writer, v)
371
+ self.timeval = v
372
+ rdata_append_timestamp_value(self.writer, self.timeval)
373
374
if vtype == RDATA_TYPE_STRING:
375
0 commit comments