This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Kallah
Recipients Kallah, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-01-08.08:44:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578473056.67.0.190561060643.issue39255@roundup.psfhosted.org>
In-reply-to
Content
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
History
Date User Action Args
2020-01-08 08:44:16Kallahsetrecipients: + Kallah, paul.moore, tim.golden, zach.ware, steve.dower
2020-01-08 08:44:16Kallahsetmessageid: <1578473056.67.0.190561060643.issue39255@roundup.psfhosted.org>
2020-01-08 08:44:16Kallahlinkissue39255 messages
2020-01-08 08:44:16Kallahcreate