[New-bugs-announce] [issue39255] Windows and Unix run-time differences
Kallah
report at bugs.python.org
Wed Jan 8 03:44:16 EST 2020
New submission from Kallah <mrsortland at gmail.com>:
In the attached sync.py, running it on windows and Unix (Ubuntu and OSX tested) will grant different results. On windows it will output:
x = 1
x = 2
x = 3
y = 1
x = 4
x = 5
x = 6
x = 7
y = 1
While on ubuntu it will output:
x = 1
x = 2
x = 3
y = 4
x = 4
x = 5
x = 6
x = 7
y = 8
----------
components: Windows
files: sync.py
messages: 359569
nosy: Kallah, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Windows and Unix run-time differences
type: behavior
versions: Python 3.6
Added file: https://bugs.python.org/file48832/sync.py
_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue39255>
_______________________________________
More information about the New-bugs-announce
mailing list