office-gobmx/pyuno/source
Stephan Bergmann 82ade9ab29 PyLong_AsLongAndOverflow returns long, and that's fine to use here
...where the goal is to check for a value in the range
[SAL_MIN_INT32 .. SAL_MAX_INT32], i.e., [-2^31 .. 2^31 - 1]:  While C++17 (via C
LONG_MIN, LONG_MAX) only guarantees a range of [-(2^31 - 1) .. 2^31 - 1] for
long, C++20 now requires two's complement and a fitting range of at least
[-2^31 .. 2^31 - 1].

No need for 0d79d21688 "long->tools::Long in
pyuno..sd" here.

Change-Id: I6be60b50acfe5ed798cc8e9e1183c336c8d72059
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104712
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2020-10-23 17:16:06 +02:00
..
loader
module PyLong_AsLongAndOverflow returns long, and that's fine to use here 2020-10-23 17:16:06 +02:00
officehelper.py