found 806493 0.23.4+git4-g7eed8d8-1
thanks
> Sadly, this doesn't seem to fix all issues:
> https://tests.reproducible-builds.org/dbd/unstable/amd64/astroscrappy_1.0.3-6.diffoscope.html
Patch attached to fix this issue.
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py
index 818e466..e0369ff 100644
--- a/Cython/Compiler/Nodes.py
+++ b/Cython/Compiler/Nodes.py
@@ -8288,7 +8288,7 @@ class ParallelWithBlockNode(ParallelStatNode):
if self.privates:
privates = [e.cname for e in self.privates
if not e.type.is_pyobject]
- code.put('private(%s)' % ', '.join(privates))
+ code.put('private(%s)' % ', '.join(sorted(privates)))
self.privatization_insertion_point = code.insertion_point()
self.put_num_threads(code)