From d3ca0bdba0ac4eb51c158ce1f2e9dd7df656b651 Mon Sep 17 00:00:00 2001 From: Hideo Hattori Date: Sun, 17 Mar 2024 19:30:56 +0900 Subject: [PATCH] update: avoid lib2to3 in README --- README.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.rst b/README.rst index addd5f36..072c0262 100644 --- a/README.rst +++ b/README.rst @@ -246,13 +246,9 @@ autopep8 fixes the following issues_ reported by pycodestyle_:: W503 - Fix line break before binary operator. W504 - Fix line break after binary operator. W605 - Fix invalid escape sequence 'x'. - W690 - Fix various deprecated code (via lib2to3). autopep8 also fixes some issues not found by pycodestyle_. -- Correct deprecated or non-idiomatic Python code (via ``lib2to3``). Use this - for making Python 2.7 code more compatible with Python 3. (This is triggered - if ``W690`` is enabled.) - Normalize files with mixed line endings. - Put a blank line between a class docstring and its first method declaration. (Enabled with ``E301``.)