You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ exceptions:
20
20
- Multi-line docstrings: The first line of text (summary line) appears on the same line as the opening three double-quotes.
21
21
- Base Class Inheritance
22
22
- If a class or nested class inherits from no other base classes, explicitly inherit from object.
23
-
- This won't be enforced for our pure Python 3 code, but we will enforce for Python 2 and 2/3 compatbile code.
23
+
- This won't be enforced for our pure Python 3 code, but we will enforce for Python 2 and 2/3 compatible code.
24
24
- Variable/module-name collisions: Variable names may be suffixed with an underscore to avoid collisions with imported modules (an extension of the [PEP-8 convention](https://www.python.org/dev/peps/pep-0008/#descriptive-naming-styles) for collisions with builtins).
25
25
26
26
@@ -29,7 +29,7 @@ exceptions:
29
29
Projects that are producing libraries to be used in other projects should choose their release version numbers using [Semantic Versioning 2.0.0](http://semver.org/spec/v2.0.0.html), i.e.
30
30
31
31
> Given a version number MAJOR.MINOR.PATCH, increment the:
32
-
>
32
+
>
33
33
> MAJOR version when you make incompatible API changes,
34
34
> MINOR version when you add functionality in a backwards-compatible manner, and
35
35
> PATCH version when you make backwards-compatible bug fixes.
0 commit comments