Changeset 6754
- Timestamp:
- 11/29/07 15:10:11 (11 months ago)
- Files:
-
- django/trunk/django/contrib/formtools/preview.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/formtools/preview.py
r6247 r6754 110 110 # Use HIGHEST_PROTOCOL because it's the most efficient. It requires 111 111 # Python 2.3, but Django requires 2.3 anyway, so that's OK. 112 pickled = pickle.dumps(data, p rotocol=pickle.HIGHEST_PROTOCOL)112 pickled = pickle.dumps(data, pickle.HIGHEST_PROTOCOL) 113 113 return md5.new(pickled).hexdigest() 114 114
