Changeset 7913
- Timestamp:
- 07/13/08 03:45:17 (4 months ago)
- Files:
-
- django/trunk/docs/testing.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/testing.txt
r7900 r7913 90 90 91 91 def add_two(num): 92 " Adds 2 to the given number and returns the result."92 "Return the result of adding two to the provided number." 93 93 return num + 2 94 94
