Author: timo
Date: 2010-12-28 15:54:47 -0600 (Tue, 28 Dec 2010)
New Revision: 15084

Modified:
   django/trunk/docs/ref/forms/fields.txt
Log:
Fixed #11496 - note that DecimalField max/min_value should be 
type(decimal.Decimal); thanks adamv.

Modified: django/trunk/docs/ref/forms/fields.txt
===================================================================
--- django/trunk/docs/ref/forms/fields.txt      2010-12-28 21:37:10 UTC (rev 
15083)
+++ django/trunk/docs/ref/forms/fields.txt      2010-12-28 21:54:47 UTC (rev 
15084)
@@ -460,7 +460,8 @@
 .. attribute:: DecimalField.max_value
 .. attribute:: DecimalField.min_value
 
-    These attributes define the limits for the fields value.
+    These control the range of values permitted in the field, and should be
+    given as ``decimal.Decimal`` values.
 
 .. attribute:: DecimalField.max_digits
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to