diff options
-rw-r--r-- | docs/coding_conventions_python.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/coding_conventions_python.md b/docs/coding_conventions_python.md index c7743050e..694aa38cf 100644 --- a/docs/coding_conventions_python.md +++ b/docs/coding_conventions_python.md | |||
@@ -77,9 +77,9 @@ Always use a .py filename extension. Never use dashes. | |||
77 | 77 | ||
78 | ## Names to Avoid | 78 | ## Names to Avoid |
79 | 79 | ||
80 | * single character names except for counters or iterators. You may use "e" as an exception identifier in try/except statements. | 80 | * single character names except for counters or iterators. You may use `e` as an exception identifier in try/except statements. |
81 | * dashes (-) in any package/module name | 81 | * dashes (`-`) in any package/module name |
82 | * __double_leading_and_trailing_underscore__ names (reserved by Python) | 82 | * `__double_leading_and_trailing_underscore__` names (reserved by Python) |
83 | 83 | ||
84 | # Docstrings | 84 | # Docstrings |
85 | 85 | ||