Changeset 7744 for django/trunk/tests/regressiontests/datastructures
- Timestamp:
- 06/25/08 22:16:55 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/datastructures/tests.py
r7140 r7744 126 126 >>> repr(d) 127 127 "{'other-key': 'once upon a time...'}" 128 129 ### DictWrapper ############################################################# 130 131 >>> f = lambda x: "*%s" % x 132 >>> d = DictWrapper({'a': 'a'}, f, 'xx_') 133 >>> "Normal: %(a)s. Modified: %(xx_a)s" % d 134 'Normal: a. Modified: *a' 135 128 136 """
