Addison Elliott

Results 61 comments of Addison Elliott

This bug sounds similar to the recent comment in this one: https://github.com/iamkun/dayjs/issues/1340#issuecomment-764769936 I'm going to cross-post the bug and how it can be fixed. Let me know if that doesn't...

A fix was applied in #1352 that may fix this bug. Can someone try with the latest changes and see if the issue still persists?

It sounds like it hasn't. I thought #1352 would fix it but others have reported not. Note that these changes are not officially released. In other words, you have to...

Can you just `kv.second.trimmed()` to remove the trailing whitespace? There's a newline inserted between multi-part form-data boundaries that is interpreted as part of the data. It's unclear to me if...

Instead of trimmed, you could just conditionally remove the last CRLF from the string if present. Presumably whatever HTTP client you're using should have two CRLFs between boundaries for data...

I agree that pushing down functions to MongoDB is difficult. In the example given above (`TO_TIMESTAMP('2022-06-07', 'YYYY-MM-DD')`), the function _should_ be evaluated and simplified before being sent to MongoDB by...

Definitely sounds like a useful feature. Some questions/comments. Sounds like it should only apply when encoding is raw. Should it apply to ASCII/text encodings? Not sure that makes sense. Should...

I see and understand your points. My mindset behind this global variable is that it's a temporary stopgap in order to gracefully handle the breaking change of the `space directions`...

It's been awhile since I've used the library, but the docs state that any rows that are `none` will turn into a list of `NaN` (source: https://pynrrd.readthedocs.io/en/stable/background/datatypes.html#double-matrix) Are you having...

Regarding point 1, I agree that handling None like NaN makes sense. I would be in favor of refactoring the formatting of ‘none’ to return a list of None instead...