allo-
allo-
I implemented it with a new struct in primitive.h and in bvhtree.h. I will soon push patches based on develop in my repo: - Bugfix for iterators (in MSVC): https://github.com/allo-/libacc/commit/eed352b8e673c3a6527f910fcde9045074762da9...
I traced it down further to ``` File "/home/radicale/venv/lib/python3.7/site-packages/radicale/xmlutils.py", line 352, in _visit_time_ranges original_duration = (dtend - dtstart).total_seconds() TypeError: unsupported operand type(s) for -: 'datetime.datetime' and 'datetime.date' ```
I am trying the workaround ``` 349 dtend = getattr(child, "dtend", None) 350 if dtend is not None: 351 dtend = dtend.value 352 if not isinstance(dtstart, datetime): 353 dtstart =...
For 3.x the same in `filter.py` ``` 242 dtend = getattr(child, "dtend", None) 243 if dtend is not None: 244 dtend = dtend.value 245 if not isinstance(dtstart, datetime): 246 dtstart...