Removed unimplemented allow_letters option from USPhoneNumberField

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4555 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-02-21 05:55:12 +00:00
parent 08e406d146
commit ec2eb4d18f
1 changed files with 0 additions and 4 deletions

View File

@ -18,10 +18,6 @@ class USZipCodeField(RegexField):
*args, **kwargs)
class USPhoneNumberField(Field):
def __init__(self, allow_letters=True, *args, **kwargs):
self.allow_letters = allow_letters
super(USPhoneNumberField, self).__init__(*args, **kwargs)
def clean(self, value):
super(USPhoneNumberField, self).clean(value)
if value in EMPTY_VALUES: