Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
139
Merge Requests
139
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
7459ae8d
Commit
7459ae8d
authored
Jun 13, 2024
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patches/python: use math.fsum for the sum of numeric values.
parent
0e2ea035
Pipeline
#35287
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
product/ERP5Type/patches/python.py
product/ERP5Type/patches/python.py
+14
-0
No files found.
product/ERP5Type/patches/python.py
View file @
7459ae8d
...
@@ -174,3 +174,17 @@ def patch_linecache():
...
@@ -174,3 +174,17 @@ def patch_linecache():
linecache
.
getlines
=
getlines
linecache
.
getlines
=
getlines
patch_linecache
()
patch_linecache
()
orig_sum
=
__builtins__
[
'sum'
]
from
math
import
fsum
def
sum_
(
iterable
,
start
=
0
):
if
start
==
0
:
ret
=
fsum
(
iterable
)
int_ret
=
int
(
ret
)
if
int_ret
==
ret
:
return
int_ret
else
:
return
ret
else
:
return
orig_sum
(
iterable
,
start
)
__builtins__
[
'sum'
]
=
sum_
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment