declarations are very rare in Python

This commit is contained in:
Georg Brandl 2010-11-17 18:26:43 +00:00
parent a9b9763b44
commit 5e2069ee4c
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ Naming Conventions
Constants
Constants are usually declared on a module level and written in all
Constants are usually defined on a module level and written in all
capital letters with underscores separating words. Examples include
MAX_OVERFLOW and TOTAL.