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.rst
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -200,6 +200,8 @@ or ``raise ... from None`` to distinguish them from errors in exception handling
200
200
See `the exception chaining tutorial <https://docs.python.org/3/tutorial/errors.html#exception-chaining>`_
201
201
for details.
202
202
203
+
**B905**: `zip()` without an explicit `strict=` parameter. Added with python3.10, so don't enable this flag for code that should work on previous versions. https://peps.python.org/pep-0618/
204
+
203
205
**B950**: Line too long. This is a pragmatic equivalent of
204
206
``pycodestyle``'s ``E501``: it considers "max-line-length" but only triggers
205
207
when the value has been exceeded by **more than 10%**. You will no
@@ -299,7 +301,8 @@ Change Log
299
301
300
302
Future
301
303
~~~~~~~~~
302
-
* B027: ignore @overload when typing is import with other names
304
+
* B027: ignore @overload when typing is imported with other names
305
+
* Add B905: `zip()` without an explicit `strict=` parameter.
0 commit comments