mirror of
https://github.com/django/django.git
synced 2025-08-30 07:17:49 +00:00
Fixed #22007 -- Fixed cbv docs - make imports consistent
Thanks to trac user kinjal.dixit for the report.
This commit is contained in:
parent
926e18d7d1
commit
d399731bf2
2 changed files with 11 additions and 3 deletions
|
@ -30,6 +30,14 @@ Python style
|
|||
* Use ``InitialCaps`` for class names (or for factory functions that
|
||||
return classes).
|
||||
|
||||
* Use convenience imports whenever available. For example, do this::
|
||||
|
||||
from django.views.generic import View
|
||||
|
||||
Don't do this::
|
||||
|
||||
from django.views.generic.base import View
|
||||
|
||||
* In docstrings, use "action words" such as::
|
||||
|
||||
def foo():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue