The picklefield stores strings. So when you say "regexes can't be stored in fixtures," it implies that you're dealing with something other than strings at that point. Have you tried the pickle field? As I understand it, it's equivalent to this manual process:
Create a normal text field. Make a property in your model that has getter and setter functions which handle the pickling and unpickling. (Recommended) Name the text field with an underscore as a prefix to indicate that it's for internal use. Since the pickled value is a string, it should work in fixtures. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.