﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21669	docs issue about MultiValueWidget	Alex Koval	nobody	"On this page:
  https://docs.djangoproject.com/en/dev/ref/forms/fields/#multivaluefield

it took me quite some time to realize that 'self' argument is included by mistake and should be removed from
__init__ arguments for code to be correct:

{{{#!python
super(PhoneField, self).__init__(
            self, error_messages=error_messages, fields=fields,
            require_all_fields=False, *args, **kwargs)
}}}

Should be:
{{{#!python
super(PhoneField, self).__init__(
            error_messages=error_messages, fields=fields,
            require_all_fields=False, *args, **kwargs)
}}}
"	Uncategorized	closed	Documentation	dev	Normal	fixed			Accepted	0	0	0	0	1	0
