Changeset 7657
- Timestamp:
- 06/15/08 23:06:50 (5 months ago)
- Files:
-
- django/trunk/django/contrib/formtools/wizard.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/formtools/wizard.py
r7294 r7657 150 150 # Use HIGHEST_PROTOCOL because it's the most efficient. It requires 151 151 # Python 2.3, but Django requires 2.3 anyway, so that's OK. 152 pickled = pickle.dumps(data, p rotocol=pickle.HIGHEST_PROTOCOL)152 pickled = pickle.dumps(data, pickle.HIGHEST_PROTOCOL) 153 153 return md5.new(pickled).hexdigest() 154 154
