From: Mark Dickinson Date: Sun, 28 Jun 2009 21:46:33 +0000 (+0000) Subject: Missed one case of incorrect Decimal quoting X-Git-Tag: 3.0~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3333703793c635ef7dbc4b5e4b75763763500335;p=thirdparty%2FPython%2Fcpython.git Missed one case of incorrect Decimal quoting --- diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index 050972c06158..dc8d91f243e9 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -360,7 +360,7 @@ becomes significant if the results are rounded to the nearest cent:: >>> from decimal import * >>> Decimal('0.70') * Decimal('1.05') - Decimal("0.7350") + Decimal('0.7350') >>> .70 * 1.05 0.73499999999999999