Changeset 5765
- Timestamp:
- 07/26/07 12:16:34 (1 year ago)
- Files:
-
- django/trunk/docs/contributing.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/contributing.txt
r5664 r5765 279 279 * Mark all strings for internationalization; see the `i18n documentation`_ 280 280 for details. 281 282 * In docstrings, use "action words," like so:: 283 284 def foo(): 285 """ 286 Calculates something and returns the result. 287 """ 288 pass 289 290 Here's an example of what not to do:: 291 292 def foo(): 293 """ 294 Calculate something and return the result. 295 """ 296 pass 281 297 282 298 * Please don't put your name in the code you contribute. Our policy is to
