Fixed #3693 -- Fixed RST error in floatformat docstring. Thanks, Simon

Greenhill.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@4699 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-03-10 08:11:28 +00:00
parent e833595bc8
commit 659aa8f01a
1 changed files with 9 additions and 8 deletions

View File

@ -70,14 +70,15 @@ def floatformat(text, arg=-1):
With a negative numeric argument, it will display that many decimal With a negative numeric argument, it will display that many decimal
places -- but only if there's places to be displayed. places -- but only if there's places to be displayed.
Examples: Examples:
num1 = 34.23234
num2 = 34.00000 * num1 = 34.23234
num1|floatformat results in 34.2 * num2 = 34.00000
num2|floatformat is 34 * num1|floatformat results in 34.2
num1|floatformat:3 is 34.232 * num2|floatformat is 34
num2|floatformat:3 is 34.000 * num1|floatformat:3 is 34.232
num1|floatformat:-3 is 34.232 * num2|floatformat:3 is 34.000
num2|floatformat:-3 is 34 * num1|floatformat:-3 is 34.232
* num2|floatformat:-3 is 34
""" """
try: try:
f = float(text) f = float(text)