Commit 296867a8 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 0.580

parent 2a339361
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
Metadata-Version: 1.1
Metadata-Version: 2.1
Name: mypy
Version: 0.570
Version: 0.580
Summary: Optional static typing for Python
Home-page: http://www.mypy-lang.org/
Author: Jukka Lehtosalo
Author-email: jukka.lehtosalo@iki.fi
License: MIT License
Description-Content-Type: UNKNOWN
Description: Mypy -- Optional Static Typing for Python
        =========================================
        
@@ -27,3 +26,4 @@ Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Provides-Extra: dmypy
+16 −10
Original line number Diff line number Diff line
@@ -11,14 +11,17 @@ flag (or its long form ``--help``)::
  usage: mypy [-h] [-v] [-V] [--python-version x.y] [--platform PLATFORM] [-2]
              [--ignore-missing-imports]
              [--follow-imports {normal,silent,skip,error}]
              [--disallow-any-{unimported,expr,decorated,explicit,generics}]
              [--disallow-untyped-calls] [--disallow-untyped-defs]
              [--disallow-any-unimported] [--disallow-any-expr]
              [--disallow-any-decorated] [--disallow-any-explicit]
              [--disallow-any-generics] [--disallow-untyped-calls]
              [--disallow-untyped-defs] [--disallow-incomplete-defs]
              [--check-untyped-defs] [--disallow-subclassing-any]
              [--warn-incomplete-stub] [--warn-redundant-casts]
              [--no-warn-no-return] [--warn-return-any] [--warn-unused-ignores]
              [--warn-incomplete-stub] [--disallow-untyped-decorators]
              [--warn-redundant-casts] [--no-warn-no-return] [--warn-return-any]
              [--warn-unused-ignores] [--warn-unused-configs]
              [--show-error-context] [--no-implicit-optional] [-i]
              [--quick-and-dirty] [--cache-dir DIR] [--skip-version-check]
              [--strict-optional]
              [--quick-and-dirty] [--cache-dir DIR] [--cache-fine-grained]
              [--skip-version-check] [--strict-optional]
              [--strict-optional-whitelist [GLOB [GLOB ...]]]
              [--junit-xml JUNIT_XML] [--pdb] [--show-traceback] [--stats]
              [--inferstats] [--custom-typing MODULE]
@@ -28,9 +31,9 @@ flag (or its long form ``--help``)::
              [--shadow-file SOURCE_FILE SHADOW_FILE] [--any-exprs-report DIR]
              [--cobertura-xml-report DIR] [--html-report DIR]
              [--linecount-report DIR] [--linecoverage-report DIR]
              [--memory-xml-report DIR]
              [--txt-report DIR] [--xml-report DIR] [--xslt-html-report DIR]
              [--xslt-txt-report DIR] [-m MODULE] [-c PROGRAM_TEXT] [-p PACKAGE]
              [--memory-xml-report DIR] [--txt-report DIR] [--xml-report DIR]
              [--xslt-html-report DIR] [--xslt-txt-report DIR] [-m MODULE]
              [-c PROGRAM_TEXT] [-p PACKAGE]
              [files [files ...]]

  (etc., too long to show everything here)
@@ -100,7 +103,10 @@ and anything imported from there.) For example::

  $ mypy -p html

will type check the entire ``html`` package (of library stubs).
will type check the entire ``html`` package (of library stubs). One can
specify multiple packages and modules on the command line, for example::

  $ mypy --package p.a --package p.b --module c

Finally the flag ``-c`` (long form: ``--command``) will take a string
from the command line and type check it as a small program.  For
+6 −0
Original line number Diff line number Diff line
@@ -4,6 +4,12 @@ Revision history
List of major changes:

- March 2018
    * Publish ``mypy`` version 0.580 on PyPI.

      * Allow specifying multiple packages on the command line with ``-p`` and ``-m`` flags.

      * Clarify that ``SupportsInt`` etc. don't support arithmetic operations.

    * Publish ``mypy`` version 0.570 on PyPI.

      * Add support for :ref:`attrs_package`.
+3 −3
Original line number Diff line number Diff line
Metadata-Version: 1.1
Metadata-Version: 2.1
Name: mypy
Version: 0.570
Version: 0.580
Summary: Optional static typing for Python
Home-page: http://www.mypy-lang.org/
Author: Jukka Lehtosalo
Author-email: jukka.lehtosalo@iki.fi
License: MIT License
Description-Content-Type: UNKNOWN
Description: Mypy -- Optional Static Typing for Python
        =========================================
        
@@ -27,3 +26,4 @@ Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Provides-Extra: dmypy
+16 −3
Original line number Diff line number Diff line
@@ -118,6 +118,8 @@ mypy/server/astdiff.py
mypy/server/astmerge.py
mypy/server/aststrip.py
mypy/server/deps.py
mypy/server/mergecheck.py
mypy/server/objgraph.py
mypy/server/subexpr.py
mypy/server/target.py
mypy/server/trigger.py
@@ -132,7 +134,6 @@ mypy/test/testcheck.py
mypy/test/testcmdline.py
mypy/test/testdeps.py
mypy/test/testdiff.py
mypy/test/testdmypy.py
mypy/test/testerrorstream.py
mypy/test/testextensions.py
mypy/test/testfinegrained.py
@@ -156,7 +157,6 @@ mypy/test/update.py
scripts/dmypy
scripts/dumpmodule.py
scripts/find_type.py
scripts/finegrained.py
scripts/mypy
scripts/mypy.bat
scripts/myunit
@@ -232,7 +232,6 @@ test-data/unit/check-classvar.test
test-data/unit/check-columns.test
test-data/unit/check-custom-plugin.test
test-data/unit/check-default-plugin.test
test-data/unit/check-dmypy-fine-grained.test
test-data/unit/check-dynamic-typing.test
test-data/unit/check-enum.test
test-data/unit/check-expressions.test
@@ -495,16 +494,30 @@ typeshed/stdlib/2/distutils/emxccompiler.pyi
typeshed/stdlib/2/email/MIMEText.pyi
typeshed/stdlib/2/email/__init__.pyi
typeshed/stdlib/2/email/_parseaddr.pyi
typeshed/stdlib/2/email/base64mime.pyi
typeshed/stdlib/2/email/charset.pyi
typeshed/stdlib/2/email/encoders.pyi
typeshed/stdlib/2/email/feedparser.pyi
typeshed/stdlib/2/email/generator.pyi
typeshed/stdlib/2/email/header.pyi
typeshed/stdlib/2/email/iterators.pyi
typeshed/stdlib/2/email/message.pyi
typeshed/stdlib/2/email/parser.pyi
typeshed/stdlib/2/email/quoprimime.pyi
typeshed/stdlib/2/email/utils.pyi
typeshed/stdlib/2/email/mime/__init__.pyi
typeshed/stdlib/2/email/mime/application.pyi
typeshed/stdlib/2/email/mime/audio.pyi
typeshed/stdlib/2/email/mime/base.pyi
typeshed/stdlib/2/email/mime/image.pyi
typeshed/stdlib/2/email/mime/message.pyi
typeshed/stdlib/2/email/mime/multipart.pyi
typeshed/stdlib/2/email/mime/nonmultipart.pyi
typeshed/stdlib/2/email/mime/text.pyi
typeshed/stdlib/2/encodings/__init__.pyi
typeshed/stdlib/2/encodings/utf_8.pyi
typeshed/stdlib/2/multiprocessing/__init__.pyi
typeshed/stdlib/2/multiprocessing/pool.pyi
typeshed/stdlib/2/multiprocessing/process.pyi
typeshed/stdlib/2/multiprocessing/util.pyi
typeshed/stdlib/2/os/__init__.pyi
Loading