﻿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
21555	ValidationError is not picklable	Alex Hayes	nobody	"I have a use case where I'd like to pickle ValidationError however it throws up as error:

For example, I'd expect the following to work:

{{{#!python
import pickle
from django.core.exceptions import ValidationError
pickle.loads(pickle.dumps(ValidationError('eggs', 'sausage')))
}}}

Results in:

{{{
TypeError: __init__() takes at least 2 arguments (1 given)
}}}

The reason for this is because ValidationError does not call super."	Bug	closed	Forms	dev	Normal	fixed		loic@…	Ready for checkin	1	0	0	0	0	0
