diff --git a/README.md b/README.md index 1967af0..ef51439 100644 --- a/README.md +++ b/README.md @@ -656,10 +656,9 @@ from dateutil.tz import UTC, tzlocal, gettz, resolve_imaginary ### Arithmetics ```python - = - # Returns the difference between wall times. - = ± # Result can be an imaginary time. - = ± - = * + = ± # Result can fall into missing hour. + = - # Returns the difference, ignoring time jumps. + = - # Convert DTs to UTC to get the actual delta. ``` diff --git a/index.html b/index.html index 1e79e96..0bc80f6 100644 --- a/index.html +++ b/index.html @@ -703,10 +703,9 @@ shuffle(<list>)
  • When parsing, '%z' also accepts '±HH:MM'.
-

Arithmetics

<TD>     = <D/DT> - <D/DT>                  # Returns the difference between wall times.
-<D/DT>   = <D/DT> ± <TD>                    # Result can be an imaginary time.
-<TD>     = <TD>   ± <TD>
-<TD>     = <TD>   * <real>
+

Arithmetics

<D/DT>   = <D/DT> ± <TD>                    # Result can fall into missing hour.
+<TD>     = <D/DT> - <D/DT>                  # Returns the difference, ignoring time jumps.
+<TD>     = <DT_UTC> - <DT_UTC>              # Convert DTs to UTC to get the actual delta.
 

#Arguments

Inside Function Call

<function>(<positional_args>)                  # f(0, 0)