﻿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
26212	Forms' FileField is not pickleable	Alexey Kotlyarov	nobody	"In Django 1.6 through to 1.9 and current HEAD, FileField cannot be pickled though other form fields can.

Steps to reproduce:

{{{
#!python
import pickle
from django import forms
pickle.dumps(forms.FileField())
}}}

On 1.5.x, this succeeds, but 1.6 through to 1.9 fail:

{{{
PicklingError: Can't pickle <function <lambda> at 0x7faab4f2cde8>: it's not found as django.utils.translation.<lambda>
}}}

See #17976 for a similar problem with BooleanField."	Bug	closed	Forms	1.9	Normal	fixed			Ready for checkin	1	0	0	0	0	0
