[issue6354] Old floating point representation in 3.1 tutorial

2009-06-28 Thread Mark Dickinson
Mark Dickinson added the comment: Ezio: I think Raymond updated that recently, so it should be okay. -- ___ Python tracker ___ ___ Py

[issue6354] Old floating point representation in 3.1 tutorial

2009-06-28 Thread Ezio Melotti
Ezio Melotti added the comment: What about http://docs.python.org/3.1/tutorial/floatingpoint.html ? -- nosy: +ezio.melotti ___ Python tracker ___

[issue6354] Old floating point representation in 3.1 tutorial

2009-06-28 Thread Mark Dickinson
Mark Dickinson added the comment: See also r73640 and r73641, which take into account Pierre's point that the note below the code sample should be updated. -- ___ Python tracker

[issue6354] Old floating point representation in 3.1 tutorial

2009-06-28 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks for the report! I've stolen this from Georg (sorry, Georg) and fixed this and a few other similar repr-related problems in r73636 (py3k) and r73637 (release31-maint). -- assignee: georg.brandl -> marketdickinson resolution: -> fixed status: op

[issue6354] Old floating point representation in 3.1 tutorial

2009-06-28 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- nosy: +eric.smith, marketdickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue6354] Old floating point representation in 3.1 tutorial

2009-06-28 Thread Pierre Bourdon
New submission from Pierre Bourdon : In part 3.1.1 of the Python 3.1 tutorial, the following code sample is obsolete : >>> 8/5 # Fractions aren't lost when dividing integers 1.6001 In a fresh Python 3.1, 8/5 is now displayed as 1.6. The note below the code sample should be updated