init
This commit is contained in:
commit
38355d2442
9083 changed files with 1225834 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
pip
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
Copyright 2005-2011 Divmod, Inc.
|
||||
Copyright 2013-2014 Florent Xicluna
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
|
@ -0,0 +1,118 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: pyflakes
|
||||
Version: 2.4.0
|
||||
Summary: passive checker of Python programs
|
||||
Home-page: https://github.com/PyCQA/pyflakes
|
||||
Author: A lot of people
|
||||
Author-email: code-quality@python.org
|
||||
License: MIT
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 6 - Mature
|
||||
Classifier: Environment :: Console
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Topic :: Software Development
|
||||
Classifier: Topic :: Utilities
|
||||
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
||||
License-File: LICENSE
|
||||
|
||||
========
|
||||
Pyflakes
|
||||
========
|
||||
|
||||
A simple program which checks Python source files for errors.
|
||||
|
||||
Pyflakes analyzes programs and detects various errors. It works by
|
||||
parsing the source file, not importing it, so it is safe to use on
|
||||
modules with side effects. It's also much faster.
|
||||
|
||||
It is `available on PyPI <https://pypi.org/project/pyflakes/>`_
|
||||
and it supports all active versions of Python: 2.7 and 3.4 to 3.8.
|
||||
|
||||
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
It can be installed with::
|
||||
|
||||
$ pip install --upgrade pyflakes
|
||||
|
||||
|
||||
Useful tips:
|
||||
|
||||
* Be sure to install it for a version of Python which is compatible
|
||||
with your codebase: for Python 2, ``pip2 install pyflakes`` and for
|
||||
Python3, ``pip3 install pyflakes``.
|
||||
|
||||
* You can also invoke Pyflakes with ``python3 -m pyflakes .`` or
|
||||
``python2 -m pyflakes .`` if you have it installed for both versions.
|
||||
|
||||
* If you require more options and more flexibility, you could give a
|
||||
look to Flake8_ too.
|
||||
|
||||
|
||||
Design Principles
|
||||
-----------------
|
||||
Pyflakes makes a simple promise: it will never complain about style,
|
||||
and it will try very, very hard to never emit false positives.
|
||||
|
||||
Pyflakes is also faster than Pylint_. This is
|
||||
largely because Pyflakes only examines the syntax tree of each file
|
||||
individually. As a consequence, Pyflakes is more limited in the
|
||||
types of things it can check.
|
||||
|
||||
If you like Pyflakes but also want stylistic checks, you want
|
||||
flake8_, which combines
|
||||
Pyflakes with style checks against
|
||||
`PEP 8`_ and adds
|
||||
per-project configuration ability.
|
||||
|
||||
|
||||
Mailing-list
|
||||
------------
|
||||
|
||||
Share your feedback and ideas: `subscribe to the mailing-list
|
||||
<https://mail.python.org/mailman/listinfo/code-quality>`_
|
||||
|
||||
Contributing
|
||||
------------
|
||||
|
||||
Issues are tracked on `GitHub <https://github.com/PyCQA/pyflakes/issues>`_.
|
||||
|
||||
Patches may be submitted via a `GitHub pull request`_ or via the mailing list
|
||||
if you prefer. If you are comfortable doing so, please `rebase your changes`_
|
||||
so they may be applied to master with a fast-forward merge, and each commit is
|
||||
a coherent unit of work with a well-written log message. If you are not
|
||||
comfortable with this rebase workflow, the project maintainers will be happy to
|
||||
rebase your commits for you.
|
||||
|
||||
All changes should include tests and pass flake8_.
|
||||
|
||||
.. image:: https://github.com/PyCQA/pyflakes/workflows/Test/badge.svg
|
||||
:target: https://github.com/PyCQA/pyflakes/actions
|
||||
:alt: GitHub Actions build status
|
||||
|
||||
.. _Pylint: https://www.pylint.org/
|
||||
.. _flake8: https://pypi.org/project/flake8/
|
||||
.. _`PEP 8`: https://www.python.org/dev/peps/pep-0008/
|
||||
.. _`rebase your changes`: https://git-scm.com/book/en/v2/Git-Branching-Rebasing
|
||||
.. _`GitHub pull request`: https://github.com/PyCQA/pyflakes/pulls
|
||||
|
||||
Changelog
|
||||
---------
|
||||
|
||||
Please see `NEWS.rst <https://github.com/PyCQA/pyflakes/blob/master/NEWS.rst>`_.
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
../../../bin/pyflakes,sha256=6eGg_feypLQOcKbe2DNy6EO9VYQL59igAEzxffXnM5w,248
|
||||
pyflakes-2.4.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
pyflakes-2.4.0.dist-info/LICENSE,sha256=IsR1acwKrlMbNyNhNmgYrwHG_C4xR3BYSnhmySs6BGM,1093
|
||||
pyflakes-2.4.0.dist-info/METADATA,sha256=QHMV-AQCZ2FdZ4kKym5lvU9rEpG9tQjK5L_pQ1AZb60,3898
|
||||
pyflakes-2.4.0.dist-info/RECORD,,
|
||||
pyflakes-2.4.0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
|
||||
pyflakes-2.4.0.dist-info/entry_points.txt,sha256=ibYwCxqSCfn_Aie_yRgFv4X_Qz0X6_i5Av-Qn_5SQIQ,48
|
||||
pyflakes-2.4.0.dist-info/top_level.txt,sha256=wuK-mcws_v9MNkEyZaVwD2x9jdhkuRhdYZcqpBFliNM,9
|
||||
pyflakes/__init__.py,sha256=I1qJysfWW1Hf-R20wdbITNEESdCUgamBTo92IugxIOo,22
|
||||
pyflakes/__main__.py,sha256=9hmtTqo4qAQwd71f2ekWMIgb53frxGVwEabFWGG_WiE,105
|
||||
pyflakes/__pycache__/__init__.cpython-38.pyc,,
|
||||
pyflakes/__pycache__/__main__.cpython-38.pyc,,
|
||||
pyflakes/__pycache__/api.cpython-38.pyc,,
|
||||
pyflakes/__pycache__/checker.cpython-38.pyc,,
|
||||
pyflakes/__pycache__/messages.cpython-38.pyc,,
|
||||
pyflakes/__pycache__/reporter.cpython-38.pyc,,
|
||||
pyflakes/api.py,sha256=cuLdqdPReHWgzrWbTeMObXpsS-l-Lj4A1cz8UX5kkAM,6647
|
||||
pyflakes/checker.py,sha256=PRLjrJdRE5pi9lZ0_x9Lfa55qgu05c06hEz2fFJA9zI,84639
|
||||
pyflakes/messages.py,sha256=7TCRstN8c2Cet5bjALKmWU242j82kMtgo4cVcSw0NTM,10908
|
||||
pyflakes/reporter.py,sha256=xjjlUpLwRpVZR_qexAYc691LfjULpoLdmJOrfCqK4Es,2715
|
||||
pyflakes/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
pyflakes/scripts/__pycache__/__init__.cpython-38.pyc,,
|
||||
pyflakes/scripts/__pycache__/pyflakes.cpython-38.pyc,,
|
||||
pyflakes/scripts/pyflakes.py,sha256=mkM2-LUyi1i6Zt4-q7r66fJJu4JSnB50gWKTPFLJlmo,287
|
||||
pyflakes/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
pyflakes/test/__pycache__/__init__.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/harness.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_api.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_builtin.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_checker.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_code_segment.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_dict.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_doctests.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_imports.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_is_literal.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_match.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_other.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_return_with_arguments_inside_generator.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_type_annotations.cpython-38.pyc,,
|
||||
pyflakes/test/__pycache__/test_undefined_names.cpython-38.pyc,,
|
||||
pyflakes/test/harness.py,sha256=RVmRttuvt9RUMBqgVgMBsX9b1V_1cmbWQJPDCrCwTkk,2404
|
||||
pyflakes/test/test_api.py,sha256=iwovqMA6aKwTef80t-7bCiWq8R0mIYtOiY9bvP3iot8,27928
|
||||
pyflakes/test/test_builtin.py,sha256=1VGwORdJbtF3Ub04o80eobjOCgyJ7LqBjd9XrU1zxQs,871
|
||||
pyflakes/test/test_checker.py,sha256=fFd6EvNVdQkOY2HbBKowQEA5fs6B-NLZsjThwFCIqSA,6014
|
||||
pyflakes/test/test_code_segment.py,sha256=Ko7iAadmh4JGgcXTIvj699AHMQqK-fZIiWABALPihIo,4590
|
||||
pyflakes/test/test_dict.py,sha256=iz_lQLWtYy587pzC4nTuahvHfuLFZ-3on12dnTSg7A0,6050
|
||||
pyflakes/test/test_doctests.py,sha256=R3z7IevybQtuDfnCM3WXeziXe-AuIUCpFTqHpRdjrIo,13193
|
||||
pyflakes/test/test_imports.py,sha256=6hF0W0Se8G0P7jj68y4Z6QINVZM7fycnKTWV8rUInlU,34599
|
||||
pyflakes/test/test_is_literal.py,sha256=pj9XCSORmzFZ6fORj12_HGthWP6RN5MPeoyj3krwVxs,4573
|
||||
pyflakes/test/test_match.py,sha256=ScyFclKMdh8H2Z_kX7hxw-EVfqDs8wQ74qjReC-HoJE,2097
|
||||
pyflakes/test/test_other.py,sha256=FSwoOgLmOuMf4KOO48sSVgX9k1SjTuKgXSHo6XPdR5E,54214
|
||||
pyflakes/test/test_return_with_arguments_inside_generator.py,sha256=ay7XvfKNTSonRsrJdhDeVagVzdQy672TJbEOVJVs1jA,899
|
||||
pyflakes/test/test_type_annotations.py,sha256=J7ULmmGl7Q4JEXQ7p07r1JGa5mgkUOdd8WTUb9SBGYw,20098
|
||||
pyflakes/test/test_undefined_names.py,sha256=p_z5GW_8h59XHEEazq5Jrw9cNkLSAxjz3sklcEH_5vY,25805
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.36.2)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
[console_scripts]
|
||||
pyflakes = pyflakes.api:main
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
pyflakes
|
||||
Loading…
Add table
Add a link
Reference in a new issue