Skip to content

Commit 812583c

Browse files
Added section to docs/contributing.txt about docstring coding style
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5765 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent 29078ea commit 812583c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs/contributing.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,22 @@ Please follow these coding standards when writing code for inclusion in Django:
279279
* Mark all strings for internationalization; see the `i18n documentation`_
280280
for details.
281281

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
297+
282298
* Please don't put your name in the code you contribute. Our policy is to
283299
keep contributors' names in the ``AUTHORS`` file distributed with Django
284300
-- not scattered throughout the codebase itself. Feel free to include a

0 commit comments

Comments
 (0)