Changeset 5060
- Timestamp:
- 04/22/07 20:55:45 (2 years ago)
- Files:
-
- django/trunk/django/utils/datastructures.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/utils/datastructures.py
r4744 r5060 212 212 "update() extends rather than replaces existing key lists. Also accepts keyword args." 213 213 if len(args) > 1: 214 raise TypeError, "update expected at most 1 arguments, got %d" ,len(args)214 raise TypeError, "update expected at most 1 arguments, got %d" % len(args) 215 215 if args: 216 216 other_dict = args[0]
