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 MJH
Recipients MJH
Date 2018-02-26.15:34:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519659253.33.0.467229070634.issue32956@psf.upfronthosting.co.za>
In-reply-to
Content
import sys
print(sys.version)

for i in range(10):
    test=i+0.5
    print (test,round(test,0))
--------------------
3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)]
	
0.5 0.0
1.5 2.0
2.5 2.0
3.5 4.0
4.5 4.0
5.5 6.0
6.5 6.0
7.5 8.0
8.5 8.0
9.5 10.0
3.6.3 |Anaconda custom (64-bit)| (default, Nov  8 2017, 15:10:56) [MSC v.1900 64 bit (AMD64)]
0.5 0.0
1.5 2.0
2.5 2.0
3.5 4.0
4.5 4.0
5.5 6.0
6.5 6.0
7.5 8.0
8.5 8.0
9.5 10.0
-------------------------
2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (Intel)]
(0.5, 1.0)
(1.5, 2.0)
(2.5, 3.0)
(3.5, 4.0)
(4.5, 5.0)
(5.5, 6.0)
(6.5, 7.0)
(7.5, 8.0)
(8.5, 9.0)
(9.5, 10.0)
History
Date User Action Args
2018-02-26 15:34:13MJHsetrecipients: + MJH
2018-02-26 15:34:13MJHsetmessageid: <1519659253.33.0.467229070634.issue32956@psf.upfronthosting.co.za>
2018-02-26 15:34:13MJHlinkissue32956 messages
2018-02-26 15:34:13MJHcreate