[Python-modules-commits] [autopep8] 01/02: New upstream version 0.9.1

Sylvestre Ledru sylvestre at moszumanska.debian.org
Mon Jun 19 20:32:51 UTC 2017


This is an automated email from the git hooks/post-receive script.

sylvestre pushed a commit to branch master
in repository autopep8.

commit 6da2820c6e1fa0afcb23d69486885017ba20575e
Author: Sylvestre Ledru <sylvestre at debian.org>
Date:   Mon Jun 19 22:30:11 2017 +0200

    New upstream version 0.9.1
---
 MANIFEST.in                            |    7 +
 PKG-INFO                               |  315 ++++
 README.rst                             |  290 +++
 autopep8.egg-info/PKG-INFO             |  315 ++++
 autopep8.egg-info/SOURCES.txt          |   18 +
 autopep8.egg-info/dependency_links.txt |    1 +
 autopep8.egg-info/entry_points.txt     |    3 +
 autopep8.egg-info/not-zip-safe         |    1 +
 autopep8.egg-info/requires.txt         |    1 +
 autopep8.egg-info/top_level.txt        |    1 +
 autopep8.py                            | 2325 ++++++++++++++++++++++++
 setup.cfg                              |    5 +
 setup.py                               |   50 +
 test/__init__.py                       |    0
 test/bad_encoding.py                   |    1 +
 test/bad_encoding2.py                  |    2 +
 test/e101_example.py                   | 1089 +++++++++++
 test/example.py                        |  165 ++
 test/iso_8859_1.py                     |    1 +
 test/test_autopep8.py                  | 3124 ++++++++++++++++++++++++++++++++
 20 files changed, 7714 insertions(+)

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..c994dfd
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,7 @@
+include README.rst
+include test/__init__.py
+include test/bad_encoding.py
+include test/bad_encoding2.py
+include test/e101_example.py
+include test/example.py
+include test/iso_8859_1.py
diff --git a/PKG-INFO b/PKG-INFO
new file mode 100644
index 0000000..bf79611
--- /dev/null
+++ b/PKG-INFO
@@ -0,0 +1,315 @@
+Metadata-Version: 1.1
+Name: autopep8
+Version: 0.9.1
+Summary: A tool that automatically formats Python code to conform to the PEP 8 style guide
+Home-page: https://github.com/hhatto/autopep8
+Author: Hideo Hattori
+Author-email: hhatto.jp at gmail.com
+License: Expat License
+Description: ========
+        autopep8
+        ========
+        
+        .. image:: https://travis-ci.org/hhatto/autopep8.png?branch=master
+           :target: https://travis-ci.org/hhatto/autopep8
+           :alt: Build status
+        
+        .. image:: https://coveralls.io/repos/hhatto/autopep8/badge.png?branch=master
+           :target: https://coveralls.io/r/hhatto/autopep8
+           :alt: Test coverage status
+        
+        
+        About
+        =====
+        
+        autopep8 automatically formats Python code to conform to the `PEP 8`_ style
+        guide. It uses the pep8_ utility to determine what parts of the code needs to
+        be formatted. autopep8 is capable of fixing most of the formatting issues_ that
+        can be reported by pep8.
+        
+        .. _PEP 8: http://www.python.org/dev/peps/pep-0008
+        .. _issues: https://pep8.readthedocs.org/en/latest/intro.html#error-codes
+        
+        
+        Installation
+        ============
+        
+        From pip::
+        
+            $ pip install --upgrade autopep8
+        
+        From easy_install::
+        
+            $ easy_install -ZU autopep8
+        
+        
+        Requirements
+        ============
+        
+        autopep8 requires pep8_ (>= 1.4.5).
+        
+        .. _pep8: https://github.com/jcrocholl/pep8
+        
+        
+        Usage
+        =====
+        
+        To modify a file in place (with all fixes enabled)::
+        
+            $ autopep8 --in-place --aggressive <filename>
+        
+        Before running autopep8.
+        
+        .. code-block:: python
+        
+            import sys, os;
+        
+            def someone_likes_semicolons(                             foo  = None            ,\
+            bar='bar'):
+        
+        
+                """Hello; bye."""; print( 'A'<>foo)            #<> is a deprecated form of !=
+                return 0;
+            def func11():
+                a=(   1,2, 3,"a"  );
+                ####This is a long comment. This should be wrapped to fit within 72 characters.
+                x = [a,[100,200,300,9876543210,'This is a long string that goes on and on']]
+            def func22(): return {True: True}.has_key({'foo': 2}.has_key('foo'));
+            class UselessClass(   object ):
+                def __init__    ( self, bar ):
+                 #Comments should have a space after the hash.
+                 if bar : bar+=1;  bar=bar* bar   ; return bar
+                 else:
+                                indentation_in_strings_should_not_be_touched = """
+            		           hello
+            world
+            """
+                                raise ValueError, indentation_in_strings_should_not_be_touched
+                def my_method(self):
+                                                          print(self);
+        
+        After running autopep8.
+        
+        .. code-block:: python
+        
+            import sys
+            import os
+        
+        
+            def someone_likes_semicolons(foo=None,
+                                         bar='bar'):
+                """Hello; bye."""
+                print('A' != foo)  # <> is a deprecated form of !=
+                return 0
+        
+        
+            def func11():
+                a = (1, 2, 3, "a")
+                # This is a long comment. This should be wrapped to fit within 72
+                # characters.
+                x = [a, [100, 200, 300, 9876543210,
+                         'This is a long string that goes on and on']]
+        
+        
+            def func22():
+                return ('foo' in {'foo': 2}) in {True: True}
+        
+        
+            class UselessClass(object):
+        
+                def __init__(self, bar):
+                    # Comments should have a space after the hash.
+                    if bar:
+                        bar += 1
+                        bar = bar * bar
+                        return bar
+                    else:
+                        indentation_in_strings_should_not_be_touched = """
+            		           hello
+            world
+            """
+                        raise ValueError(indentation_in_strings_should_not_be_touched)
+        
+                def my_method(self):
+                    print(self)
+        
+        
+        Options::
+        
+            Usage: autopep8 [options] [filename [filename ...]]
+            Use filename '-'  for stdin.
+        
+            Automatically formats Python code to conform to the PEP 8 style guide.
+        
+            Options:
+              --version             show program's version number and exit
+              -h, --help            show this help message and exit
+              -v, --verbose         print verbose messages; multiple -v result in more
+                                    verbose messages
+              -d, --diff            print the diff for the fixed source
+              -i, --in-place        make changes to files in place
+              -r, --recursive       run recursively; must be used with --in-place or
+                                    --diff
+              -j n, --jobs=n        number of parallel jobs; match CPU count if value is
+                                    less than 1
+              -p n, --pep8-passes=n
+                                    maximum number of additional pep8 passes (default:
+                                    infinite)
+              -a, --aggressive      enable non-whitespace changes; multiple -a result in
+                                    more aggressive changes
+              --exclude=globs       exclude files/directories that match these comma-
+                                    separated globs
+              --list-fixes          list codes for fixes; used by --ignore and --select
+              --ignore=errors       do not fix these errors/warnings (default: E24,W6)
+              --select=errors       fix only these errors/warnings (e.g. E4,W)
+              --max-line-length=n   set maximum allowed line length (default: 79)
+        
+        
+        Features
+        ========
+        
+        autopep8 fixes the following issues_ reported by pep8_::
+        
+            E101 - Reindent all lines.
+            E111 - Reindent all lines.
+            E121 - Fix indentation to be a multiple of four.
+            E122 - Add absent indentation for hanging indentation.
+            E123 - Align closing bracket to match opening bracket.
+            E124 - Align closing bracket to match visual indentation.
+            E125 - Indent to distinguish line from next logical line.
+            E126 - Fix over-indented hanging indentation.
+            E127 - Fix visual indentation.
+            E128 - Fix visual indentation.
+            E20  - Remove extraneous whitespace.
+            E211 - Remove extraneous whitespace.
+            E22  - Fix extraneous whitespace around keywords.
+            E224 - Remove extraneous whitespace around operator.
+            E22  - Fix missing whitespace around operator.
+            E231 - Add missing whitespace.
+            E241 - Fix extraneous whitespace around keywords.
+            E242 - Remove extraneous whitespace around operator.
+            E251 - Remove whitespace around parameter '=' sign.
+            E26  - Fix spacing after comment hash.
+            E27  - Fix extraneous whitespace around keywords.
+            E301 - Add missing blank line.
+            E302 - Add missing 2 blank lines.
+            E303 - Remove extra blank lines.
+            E304 - Remove blank line following function decorator.
+            E401 - Put imports on separate lines.
+            E501 - Try to make lines fit within --max-line-length characters.
+            E502 - Remove extraneous escape of newline.
+            E701 - Put colon-separated compound statement on separate lines.
+            E70  - Put semicolon-separated compound statement on separate lines.
+            E711 - Fix comparison with None.
+            E712 - Fix comparison with boolean.
+            W191 - Reindent all lines.
+            W291 - Remove trailing whitespace.
+            W293 - Remove trailing whitespace on blank line.
+            W391 - Remove trailing blank lines.
+            E26  - Format block comments.
+            W6   - Fix various deprecated code (via lib2to3).
+            W602 - Fix deprecated form of raising exception.
+        
+        autopep8 also fixes some issues not found by pep8_.
+        
+        - Correct deprecated or non-idiomatic Python code (via ``lib2to3``). (This is
+          triggered if ``W6`` is enabled.)
+        - Format block comments. (This is triggered if ``E26`` is enabled.)
+        - Normalize files with mixed line endings.
+        - Put a blank line between a class declaration and its first method
+          declaration. (Enabled with ``E301``.)
+        - Remove blank lines between a function declaration and its docstring. (Enabled
+          with ``E303``.)
+        
+        
+        More advanced usage
+        ===================
+        
+        To enable only a subset of the fixes, use the ``--select`` option. For example,
+        to fix various types of indentation issues::
+        
+            $ autopep8 --select=E1,W1 <filename>
+        
+        Similarly, to just fix deprecated code::
+        
+            $ autopep8 --select=W6 <filename>
+        
+        The above is useful when trying to port a single code base to work with both
+        Python 2 and Python 3 at the same time.
+        
+        If the file being fixed is large, you may want to enable verbose progress
+        messages::
+        
+            $ autopep8 -v <filename>
+        
+        By default autopep8 only makes whitespace changes. Thus, by default, it does
+        not fix ``E711`` and ``E712``. (Changing ``x == None`` to ``x is None`` may
+        change the meaning of the program if ``x`` has its ``__eq__`` method
+        overridden.) Nor does it correct deprecated code ``W6``. To enable these
+        more aggressive fixes, use the ``--aggressive`` option::
+        
+            $ autopep8 --aggressive <filename>
+        
+        ``--aggressive`` will also shorten lines more aggressively.
+        
+        
+        Use as a module
+        ===============
+        
+        The simplest way of using autopep8 as a module is via the ``fix_string()``
+        function.
+        
+        .. code-block:: python
+        
+            >>> import autopep8
+            >>> autopep8.fix_string('x=       123\n')
+            'x = 123\n'
+        
+        
+        Testing
+        =======
+        
+        Test cases are in ``test/test_autopep8.py``. They can be run directly via
+        ``python test/test_autopep8.py`` or via tox_. The latter is useful for
+        testing against multiple Python interpreters. (We currently test against
+        CPython versions 2.6, 2.7, 3.2, and 3.3. We also test against PyPy.)
+        
+        .. _`tox`: https://pypi.python.org/pypi/tox
+        
+        Broad spectrum testing is available via ``test/acid.py``. This script runs
+        autopep8 against Python code and checks for correctness and completeness of the
+        code fixes. It can check that the bytecode remains identical.
+        ``test/acid_pypi.py`` makes use of ``acid.py`` to test against the latest
+        released packages on PyPI. In a similar fashion, ``test/acid_github.py`` tests
+        against Python code in Github repositories.
+        
+        
+        Links
+        =====
+        
+        * PyPI_
+        * GitHub_
+        * `Travis CI`_
+        * Jenkins_
+        
+        .. _PyPI: https://pypi.python.org/pypi/autopep8/
+        .. _GitHub: https://github.com/hhatto/autopep8
+        .. _`Travis CI`: https://travis-ci.org/hhatto/autopep8
+        .. _Jenkins: http://jenkins.hexacosa.net/job/autopep8/
+        
+Keywords: automation,pep8,format
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Environment :: Console
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Topic :: Software Development :: Quality Assurance
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..a8831cb
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,290 @@
+========
+autopep8
+========
+
+.. image:: https://travis-ci.org/hhatto/autopep8.png?branch=master
+   :target: https://travis-ci.org/hhatto/autopep8
+   :alt: Build status
+
+.. image:: https://coveralls.io/repos/hhatto/autopep8/badge.png?branch=master
+   :target: https://coveralls.io/r/hhatto/autopep8
+   :alt: Test coverage status
+
+
+About
+=====
+
+autopep8 automatically formats Python code to conform to the `PEP 8`_ style
+guide. It uses the pep8_ utility to determine what parts of the code needs to
+be formatted. autopep8 is capable of fixing most of the formatting issues_ that
+can be reported by pep8.
+
+.. _PEP 8: http://www.python.org/dev/peps/pep-0008
+.. _issues: https://pep8.readthedocs.org/en/latest/intro.html#error-codes
+
+
+Installation
+============
+
+From pip::
+
+    $ pip install --upgrade autopep8
+
+From easy_install::
+
+    $ easy_install -ZU autopep8
+
+
+Requirements
+============
+
+autopep8 requires pep8_ (>= 1.4.5).
+
+.. _pep8: https://github.com/jcrocholl/pep8
+
+
+Usage
+=====
+
+To modify a file in place (with all fixes enabled)::
+
+    $ autopep8 --in-place --aggressive <filename>
+
+Before running autopep8.
+
+.. code-block:: python
+
+    import sys, os;
+
+    def someone_likes_semicolons(                             foo  = None            ,\
+    bar='bar'):
+
+
+        """Hello; bye."""; print( 'A'<>foo)            #<> is a deprecated form of !=
+        return 0;
+    def func11():
+        a=(   1,2, 3,"a"  );
+        ####This is a long comment. This should be wrapped to fit within 72 characters.
+        x = [a,[100,200,300,9876543210,'This is a long string that goes on and on']]
+    def func22(): return {True: True}.has_key({'foo': 2}.has_key('foo'));
+    class UselessClass(   object ):
+        def __init__    ( self, bar ):
+         #Comments should have a space after the hash.
+         if bar : bar+=1;  bar=bar* bar   ; return bar
+         else:
+                        indentation_in_strings_should_not_be_touched = """
+    		           hello
+    world
+    """
+                        raise ValueError, indentation_in_strings_should_not_be_touched
+        def my_method(self):
+                                                  print(self);
+
+After running autopep8.
+
+.. code-block:: python
+
+    import sys
+    import os
+
+
+    def someone_likes_semicolons(foo=None,
+                                 bar='bar'):
+        """Hello; bye."""
+        print('A' != foo)  # <> is a deprecated form of !=
+        return 0
+
+
+    def func11():
+        a = (1, 2, 3, "a")
+        # This is a long comment. This should be wrapped to fit within 72
+        # characters.
+        x = [a, [100, 200, 300, 9876543210,
+                 'This is a long string that goes on and on']]
+
+
+    def func22():
+        return ('foo' in {'foo': 2}) in {True: True}
+
+
+    class UselessClass(object):
+
+        def __init__(self, bar):
+            # Comments should have a space after the hash.
+            if bar:
+                bar += 1
+                bar = bar * bar
+                return bar
+            else:
+                indentation_in_strings_should_not_be_touched = """
+    		           hello
+    world
+    """
+                raise ValueError(indentation_in_strings_should_not_be_touched)
+
+        def my_method(self):
+            print(self)
+
+
+Options::
+
+    Usage: autopep8 [options] [filename [filename ...]]
+    Use filename '-'  for stdin.
+
+    Automatically formats Python code to conform to the PEP 8 style guide.
+
+    Options:
+      --version             show program's version number and exit
+      -h, --help            show this help message and exit
+      -v, --verbose         print verbose messages; multiple -v result in more
+                            verbose messages
+      -d, --diff            print the diff for the fixed source
+      -i, --in-place        make changes to files in place
+      -r, --recursive       run recursively; must be used with --in-place or
+                            --diff
+      -j n, --jobs=n        number of parallel jobs; match CPU count if value is
+                            less than 1
+      -p n, --pep8-passes=n
+                            maximum number of additional pep8 passes (default:
+                            infinite)
+      -a, --aggressive      enable non-whitespace changes; multiple -a result in
+                            more aggressive changes
+      --exclude=globs       exclude files/directories that match these comma-
+                            separated globs
+      --list-fixes          list codes for fixes; used by --ignore and --select
+      --ignore=errors       do not fix these errors/warnings (default: E24,W6)
+      --select=errors       fix only these errors/warnings (e.g. E4,W)
+      --max-line-length=n   set maximum allowed line length (default: 79)
+
+
+Features
+========
+
+autopep8 fixes the following issues_ reported by pep8_::
+
+    E101 - Reindent all lines.
+    E111 - Reindent all lines.
+    E121 - Fix indentation to be a multiple of four.
+    E122 - Add absent indentation for hanging indentation.
+    E123 - Align closing bracket to match opening bracket.
+    E124 - Align closing bracket to match visual indentation.
+    E125 - Indent to distinguish line from next logical line.
+    E126 - Fix over-indented hanging indentation.
+    E127 - Fix visual indentation.
+    E128 - Fix visual indentation.
+    E20  - Remove extraneous whitespace.
+    E211 - Remove extraneous whitespace.
+    E22  - Fix extraneous whitespace around keywords.
+    E224 - Remove extraneous whitespace around operator.
+    E22  - Fix missing whitespace around operator.
+    E231 - Add missing whitespace.
+    E241 - Fix extraneous whitespace around keywords.
+    E242 - Remove extraneous whitespace around operator.
+    E251 - Remove whitespace around parameter '=' sign.
+    E26  - Fix spacing after comment hash.
+    E27  - Fix extraneous whitespace around keywords.
+    E301 - Add missing blank line.
+    E302 - Add missing 2 blank lines.
+    E303 - Remove extra blank lines.
+    E304 - Remove blank line following function decorator.
+    E401 - Put imports on separate lines.
+    E501 - Try to make lines fit within --max-line-length characters.
+    E502 - Remove extraneous escape of newline.
+    E701 - Put colon-separated compound statement on separate lines.
+    E70  - Put semicolon-separated compound statement on separate lines.
+    E711 - Fix comparison with None.
+    E712 - Fix comparison with boolean.
+    W191 - Reindent all lines.
+    W291 - Remove trailing whitespace.
+    W293 - Remove trailing whitespace on blank line.
+    W391 - Remove trailing blank lines.
+    E26  - Format block comments.
+    W6   - Fix various deprecated code (via lib2to3).
+    W602 - Fix deprecated form of raising exception.
+
+autopep8 also fixes some issues not found by pep8_.
+
+- Correct deprecated or non-idiomatic Python code (via ``lib2to3``). (This is
+  triggered if ``W6`` is enabled.)
+- Format block comments. (This is triggered if ``E26`` is enabled.)
+- Normalize files with mixed line endings.
+- Put a blank line between a class declaration and its first method
+  declaration. (Enabled with ``E301``.)
+- Remove blank lines between a function declaration and its docstring. (Enabled
+  with ``E303``.)
+
+
+More advanced usage
+===================
+
+To enable only a subset of the fixes, use the ``--select`` option. For example,
+to fix various types of indentation issues::
+
+    $ autopep8 --select=E1,W1 <filename>
+
+Similarly, to just fix deprecated code::
+
+    $ autopep8 --select=W6 <filename>
+
+The above is useful when trying to port a single code base to work with both
+Python 2 and Python 3 at the same time.
+
+If the file being fixed is large, you may want to enable verbose progress
+messages::
+
+    $ autopep8 -v <filename>
+
+By default autopep8 only makes whitespace changes. Thus, by default, it does
+not fix ``E711`` and ``E712``. (Changing ``x == None`` to ``x is None`` may
+change the meaning of the program if ``x`` has its ``__eq__`` method
+overridden.) Nor does it correct deprecated code ``W6``. To enable these
+more aggressive fixes, use the ``--aggressive`` option::
+
+    $ autopep8 --aggressive <filename>
+
+``--aggressive`` will also shorten lines more aggressively.
+
+
+Use as a module
+===============
+
+The simplest way of using autopep8 as a module is via the ``fix_string()``
+function.
+
+.. code-block:: python
+
+    >>> import autopep8
+    >>> autopep8.fix_string('x=       123\n')
+    'x = 123\n'
+
+
+Testing
+=======
+
+Test cases are in ``test/test_autopep8.py``. They can be run directly via
+``python test/test_autopep8.py`` or via tox_. The latter is useful for
+testing against multiple Python interpreters. (We currently test against
+CPython versions 2.6, 2.7, 3.2, and 3.3. We also test against PyPy.)
+
+.. _`tox`: https://pypi.python.org/pypi/tox
+
+Broad spectrum testing is available via ``test/acid.py``. This script runs
+autopep8 against Python code and checks for correctness and completeness of the
+code fixes. It can check that the bytecode remains identical.
+``test/acid_pypi.py`` makes use of ``acid.py`` to test against the latest
+released packages on PyPI. In a similar fashion, ``test/acid_github.py`` tests
+against Python code in Github repositories.
+
+
+Links
+=====
+
+* PyPI_
+* GitHub_
+* `Travis CI`_
+* Jenkins_
+
+.. _PyPI: https://pypi.python.org/pypi/autopep8/
+.. _GitHub: https://github.com/hhatto/autopep8
+.. _`Travis CI`: https://travis-ci.org/hhatto/autopep8
+.. _Jenkins: http://jenkins.hexacosa.net/job/autopep8/
diff --git a/autopep8.egg-info/PKG-INFO b/autopep8.egg-info/PKG-INFO
new file mode 100644
index 0000000..bf79611
--- /dev/null
+++ b/autopep8.egg-info/PKG-INFO
@@ -0,0 +1,315 @@
+Metadata-Version: 1.1
+Name: autopep8
+Version: 0.9.1
+Summary: A tool that automatically formats Python code to conform to the PEP 8 style guide
+Home-page: https://github.com/hhatto/autopep8
+Author: Hideo Hattori
+Author-email: hhatto.jp at gmail.com
+License: Expat License
+Description: ========
+        autopep8
+        ========
+        
+        .. image:: https://travis-ci.org/hhatto/autopep8.png?branch=master
+           :target: https://travis-ci.org/hhatto/autopep8
+           :alt: Build status
+        
+        .. image:: https://coveralls.io/repos/hhatto/autopep8/badge.png?branch=master
+           :target: https://coveralls.io/r/hhatto/autopep8
+           :alt: Test coverage status
+        
+        
+        About
+        =====
+        
+        autopep8 automatically formats Python code to conform to the `PEP 8`_ style
+        guide. It uses the pep8_ utility to determine what parts of the code needs to
+        be formatted. autopep8 is capable of fixing most of the formatting issues_ that
+        can be reported by pep8.
+        
+        .. _PEP 8: http://www.python.org/dev/peps/pep-0008
+        .. _issues: https://pep8.readthedocs.org/en/latest/intro.html#error-codes
+        
+        
+        Installation
+        ============
+        
+        From pip::
+        
+            $ pip install --upgrade autopep8
+        
+        From easy_install::
+        
+            $ easy_install -ZU autopep8
+        
+        
+        Requirements
+        ============
+        
+        autopep8 requires pep8_ (>= 1.4.5).
+        
+        .. _pep8: https://github.com/jcrocholl/pep8
+        
+        
+        Usage
+        =====
+        
+        To modify a file in place (with all fixes enabled)::
+        
+            $ autopep8 --in-place --aggressive <filename>
+        
+        Before running autopep8.
+        
+        .. code-block:: python
+        
+            import sys, os;
+        
+            def someone_likes_semicolons(                             foo  = None            ,\
+            bar='bar'):
+        
+        
+                """Hello; bye."""; print( 'A'<>foo)            #<> is a deprecated form of !=
+                return 0;
+            def func11():
+                a=(   1,2, 3,"a"  );
+                ####This is a long comment. This should be wrapped to fit within 72 characters.
+                x = [a,[100,200,300,9876543210,'This is a long string that goes on and on']]
+            def func22(): return {True: True}.has_key({'foo': 2}.has_key('foo'));
+            class UselessClass(   object ):
+                def __init__    ( self, bar ):
+                 #Comments should have a space after the hash.
+                 if bar : bar+=1;  bar=bar* bar   ; return bar
+                 else:
+                                indentation_in_strings_should_not_be_touched = """
+            		           hello
+            world
+            """
+                                raise ValueError, indentation_in_strings_should_not_be_touched
+                def my_method(self):
+                                                          print(self);
+        
+        After running autopep8.
+        
+        .. code-block:: python
+        
+            import sys
+            import os
+        
+        
+            def someone_likes_semicolons(foo=None,
+                                         bar='bar'):
+                """Hello; bye."""
+                print('A' != foo)  # <> is a deprecated form of !=
+                return 0
+        
+        
+            def func11():
+                a = (1, 2, 3, "a")
+                # This is a long comment. This should be wrapped to fit within 72
+                # characters.
+                x = [a, [100, 200, 300, 9876543210,
+                         'This is a long string that goes on and on']]
+        
+        
+            def func22():
+                return ('foo' in {'foo': 2}) in {True: True}
+        
+        
+            class UselessClass(object):
+        
+                def __init__(self, bar):
+                    # Comments should have a space after the hash.
+                    if bar:
+                        bar += 1
+                        bar = bar * bar
+                        return bar
+                    else:
+                        indentation_in_strings_should_not_be_touched = """
+            		           hello
+            world
+            """
+                        raise ValueError(indentation_in_strings_should_not_be_touched)
+        
+                def my_method(self):
+                    print(self)
+        
+        
+        Options::
+        
+            Usage: autopep8 [options] [filename [filename ...]]
+            Use filename '-'  for stdin.
+        
+            Automatically formats Python code to conform to the PEP 8 style guide.
+        
+            Options:
+              --version             show program's version number and exit
+              -h, --help            show this help message and exit
+              -v, --verbose         print verbose messages; multiple -v result in more
+                                    verbose messages
+              -d, --diff            print the diff for the fixed source
+              -i, --in-place        make changes to files in place
+              -r, --recursive       run recursively; must be used with --in-place or
+                                    --diff
+              -j n, --jobs=n        number of parallel jobs; match CPU count if value is
+                                    less than 1
+              -p n, --pep8-passes=n
+                                    maximum number of additional pep8 passes (default:
+                                    infinite)
+              -a, --aggressive      enable non-whitespace changes; multiple -a result in
+                                    more aggressive changes
+              --exclude=globs       exclude files/directories that match these comma-
+                                    separated globs
+              --list-fixes          list codes for fixes; used by --ignore and --select
+              --ignore=errors       do not fix these errors/warnings (default: E24,W6)
+              --select=errors       fix only these errors/warnings (e.g. E4,W)
+              --max-line-length=n   set maximum allowed line length (default: 79)
+        
+        
+        Features
+        ========
+        
+        autopep8 fixes the following issues_ reported by pep8_::
+        
+            E101 - Reindent all lines.
+            E111 - Reindent all lines.
+            E121 - Fix indentation to be a multiple of four.
+            E122 - Add absent indentation for hanging indentation.
+            E123 - Align closing bracket to match opening bracket.
+            E124 - Align closing bracket to match visual indentation.
+            E125 - Indent to distinguish line from next logical line.
+            E126 - Fix over-indented hanging indentation.
+            E127 - Fix visual indentation.
+            E128 - Fix visual indentation.
+            E20  - Remove extraneous whitespace.
+            E211 - Remove extraneous whitespace.
+            E22  - Fix extraneous whitespace around keywords.
+            E224 - Remove extraneous whitespace around operator.
+            E22  - Fix missing whitespace around operator.
+            E231 - Add missing whitespace.
+            E241 - Fix extraneous whitespace around keywords.
+            E242 - Remove extraneous whitespace around operator.
+            E251 - Remove whitespace around parameter '=' sign.
+            E26  - Fix spacing after comment hash.
+            E27  - Fix extraneous whitespace around keywords.
+            E301 - Add missing blank line.
+            E302 - Add missing 2 blank lines.
+            E303 - Remove extra blank lines.
+            E304 - Remove blank line following function decorator.
+            E401 - Put imports on separate lines.
+            E501 - Try to make lines fit within --max-line-length characters.
+            E502 - Remove extraneous escape of newline.
+            E701 - Put colon-separated compound statement on separate lines.
+            E70  - Put semicolon-separated compound statement on separate lines.
+            E711 - Fix comparison with None.
+            E712 - Fix comparison with boolean.
+            W191 - Reindent all lines.
+            W291 - Remove trailing whitespace.
+            W293 - Remove trailing whitespace on blank line.
+            W391 - Remove trailing blank lines.
+            E26  - Format block comments.
+            W6   - Fix various deprecated code (via lib2to3).
+            W602 - Fix deprecated form of raising exception.
+        
+        autopep8 also fixes some issues not found by pep8_.
+        
+        - Correct deprecated or non-idiomatic Python code (via ``lib2to3``). (This is
+          triggered if ``W6`` is enabled.)
+        - Format block comments. (This is triggered if ``E26`` is enabled.)
+        - Normalize files with mixed line endings.
+        - Put a blank line between a class declaration and its first method
+          declaration. (Enabled with ``E301``.)
+        - Remove blank lines between a function declaration and its docstring. (Enabled
+          with ``E303``.)
+        
+        
+        More advanced usage
+        ===================
+        
+        To enable only a subset of the fixes, use the ``--select`` option. For example,
+        to fix various types of indentation issues::
+        
+            $ autopep8 --select=E1,W1 <filename>
+        
+        Similarly, to just fix deprecated code::
+        
+            $ autopep8 --select=W6 <filename>
+        
+        The above is useful when trying to port a single code base to work with both
+        Python 2 and Python 3 at the same time.
+        
+        If the file being fixed is large, you may want to enable verbose progress
+        messages::
+        
+            $ autopep8 -v <filename>
+        
+        By default autopep8 only makes whitespace changes. Thus, by default, it does
+        not fix ``E711`` and ``E712``. (Changing ``x == None`` to ``x is None`` may
+        change the meaning of the program if ``x`` has its ``__eq__`` method
+        overridden.) Nor does it correct deprecated code ``W6``. To enable these
+        more aggressive fixes, use the ``--aggressive`` option::
+        
+            $ autopep8 --aggressive <filename>
+        
+        ``--aggressive`` will also shorten lines more aggressively.
+        
+        
+        Use as a module
+        ===============
+        
+        The simplest way of using autopep8 as a module is via the ``fix_string()``
+        function.
+        
+        .. code-block:: python
+        
+            >>> import autopep8
+            >>> autopep8.fix_string('x=       123\n')
+            'x = 123\n'
+        
+        
+        Testing
+        =======
+        
+        Test cases are in ``test/test_autopep8.py``. They can be run directly via
+        ``python test/test_autopep8.py`` or via tox_. The latter is useful for
+        testing against multiple Python interpreters. (We currently test against
+        CPython versions 2.6, 2.7, 3.2, and 3.3. We also test against PyPy.)
+        
+        .. _`tox`: https://pypi.python.org/pypi/tox
+        
+        Broad spectrum testing is available via ``test/acid.py``. This script runs
+        autopep8 against Python code and checks for correctness and completeness of the
+        code fixes. It can check that the bytecode remains identical.
+        ``test/acid_pypi.py`` makes use of ``acid.py`` to test against the latest
+        released packages on PyPI. In a similar fashion, ``test/acid_github.py`` tests
+        against Python code in Github repositories.
+        
+        
+        Links
+        =====
+        
+        * PyPI_
+        * GitHub_
+        * `Travis CI`_
+        * Jenkins_
+        
+        .. _PyPI: https://pypi.python.org/pypi/autopep8/
+        .. _GitHub: https://github.com/hhatto/autopep8
+        .. _`Travis CI`: https://travis-ci.org/hhatto/autopep8
+        .. _Jenkins: http://jenkins.hexacosa.net/job/autopep8/
+        
+Keywords: automation,pep8,format
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Environment :: Console
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Topic :: Software Development :: Quality Assurance
diff --git a/autopep8.egg-info/SOURCES.txt b/autopep8.egg-info/SOURCES.txt
new file mode 100644
index 0000000..24ccaf9
--- /dev/null
+++ b/autopep8.egg-info/SOURCES.txt
@@ -0,0 +1,18 @@
+MANIFEST.in
+README.rst
+autopep8.py
+setup.py
+autopep8.egg-info/PKG-INFO
+autopep8.egg-info/SOURCES.txt
+autopep8.egg-info/dependency_links.txt
+autopep8.egg-info/entry_points.txt
+autopep8.egg-info/not-zip-safe
+autopep8.egg-info/requires.txt
+autopep8.egg-info/top_level.txt
+test/__init__.py
+test/bad_encoding.py
+test/bad_encoding2.py
+test/e101_example.py
... 6861 lines suppressed ...

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/autopep8.git



More information about the Python-modules-commits mailing list