Chris

Results 65 comments of Chris

Using code from https://aboutsimon.com/blog/2016/08/04/datetime-vs-Arrow-vs-Pendulum-vs-Delorean-vs-udatetime.html and modifying it to run on Python 3.9 I was able to get the following results. Note - I couldn't get udatetime to install and quite...

> We should probably add descriptions to each benchmark and work on graphing the results. Absolutely, we also need to check this is actually doing fair comparisons as well. Looks...

@jadchaar do you think that `arrow.get()` might have too many kwargs if we add this?

Hi @JosEnerv, thanks for the bug report, we've struggled a lot with max timestamp calculations in the past. Can you put together a minimal example so we can try to...

That is one option, we could also subclass timedelta to provide better usability and extra methods.

Hi @yiransii that is exactly what I meant by fold.

Hey @yiransii for now we can stick with the `enfold` method. We just need to make sure that the fold kwarg is handled correctly in the `get()` method (https://github.com/arrow-py/arrow/blob/master/arrow/factory.py#L146).

@sania-dsouza we would expect the following. ```shell >>> arrow.Arrow(2001, 10, 28, 1, tzinfo="US/Pacific") >>> arrow.Arrow(2001, 10, 28, 1, tzinfo="US/Pacific", fold=1) ```

This is the current situation. Arrow will now parse this timestamp but truncate it to 6 fractional seconds. ```python Python 2.7.12 (default, Nov 12 2018, 14:36:49) [GCC 5.4.0 20160609] on...

Hmmm lint passes now, looks like it was some kind of `setuptools` install error that was causing issues.