I edit PickledObjectField's in admin using editable=True flag where the assigned widget is a textbox. So I have to add the following line to my admin class:
formfield_overrides = {PickledObjectField: {'widget': widgets.AdminTextareaWidget}, }
I think it'd be nice if this was the default behaviour.