Ticket #3931: typo-form-doctests.diff
File typo-form-doctests.diff, 633 bytes (added by , 18 years ago) |
---|
-
tests/regressiontests/forms/tests.py
1455 1455 >>> f.clean('http://www.google.com') # This will fail if there's no Internet connection 1456 1456 u'http://www.google.com' 1457 1457 1458 EmailField also access min_length and max_length parameters, for convenience.1458 URLField also access min_length and max_length parameters, for convenience. 1459 1459 >>> f = URLField(min_length=15, max_length=20) 1460 1460 >>> f.clean('http://f.com') 1461 1461 Traceback (most recent call last):