Ticket #12048: widgets.py.patch
File widgets.py.patch, 598 bytes (added by , 15 years ago) |
---|
-
django/forms/widgets.py
700 700 return media 701 701 media = property(_get_media) 702 702 703 def __deepcopy__(self, memo): 704 obj = copy.deepcopy(super(MultiWidget, self), memo) 705 memo[id(self)] = obj 706 obj.widgets = copy.deepcopy(self.widgets, memo) 707 return obj 708 703 709 class SplitDateTimeWidget(MultiWidget): 704 710 """ 705 711 A Widget that splits datetime input into two <input type="text"> boxes.