[med-svn] [mypy] branch master updated (3bcb358 -> 72d0391)

Michael Crusoe misterc-guest at moszumanska.debian.org
Mon Jul 11 15:03:12 UTC 2016


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

misterc-guest pushed a change to branch master
in repository mypy.

      from  3bcb358   Upload to unstable
       new  7a93abf   Imported Upstream version 0.4.2
       new  4ade16b   new upstream release
       new  0c3d80b   update copyright format URL
       new  72d0391   revert switch to python3-dev, mypy is not a cpython extension

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 PKG-INFO                                           |   2 +-
 debian/changelog                                   |  14 +-
 debian/control                                     |   2 +-
 debian/copyright                                   |   2 +-
 lib-typing/2.7/test_typing.py                      |  94 ++-
 lib-typing/2.7/typing.py                           |  94 ++-
 lib-typing/3.2/test_typing.py                      |  91 ++-
 lib-typing/3.2/typing.py                           |  97 ++-
 mypy/build.py                                      | 109 +++-
 mypy/checker.py                                    | 182 +++---
 mypy/checkexpr.py                                  | 131 +++-
 mypy/checkmember.py                                |  26 +-
 mypy/checkstrformat.py                             |   2 +-
 mypy/constraints.py                                |  17 +-
 mypy/erasetype.py                                  |  23 +-
 mypy/errors.py                                     |   7 +
 mypy/expandtype.py                                 |   9 +-
 mypy/fastparse.py                                  |  70 ++-
 mypy/fixup.py                                      |   7 +-
 mypy/join.py                                       |  13 +-
 mypy/main.py                                       |   6 +
 mypy/meet.py                                       |  20 +-
 mypy/messages.py                                   |  24 +-
 mypy/nodes.py                                      |  29 +-
 mypy/parse.py                                      |   2 +-
 mypy/replacetvars.py                               |   2 +-
 mypy/sametypes.py                                  |   9 +-
 mypy/semanal.py                                    |  88 ++-
 mypy/solve.py                                      |   4 +-
 mypy/strconv.py                                    |   3 +
 mypy/stubgen.py                                    |  51 +-
 mypy/subtypes.py                                   |  24 +-
 mypy/traverser.py                                  |  11 +-
 mypy/treetransform.py                              |   5 +-
 mypy/typeanal.py                                   |  38 +-
 mypy/typefixture.py                                |  10 +-
 mypy/types.py                                      |  78 ++-
 mypy/version.py                                    |   2 +-
 mypy/visitor.py                                    |   3 +
 mypy/waiter.py                                     |  44 +-
 scripts/pyxlslave.py~                              |  24 -
 setup.py                                           |   8 +-
 typeshed/stdlib/2.7/__builtin__.pyi                |  27 +-
 typeshed/stdlib/2.7/_socket.pyi                    |   2 +-
 typeshed/stdlib/2.7/argparse.pyi                   |  35 +-
 typeshed/stdlib/2.7/builtins.pyi                   |  27 +-
 typeshed/stdlib/2.7/calendar.pyi                   |   2 +-
 typeshed/stdlib/2.7/datetime.pyi                   |   6 +-
 typeshed/stdlib/2.7/getopt.pyi                     |  17 +
 typeshed/stdlib/2.7/gettext.pyi                    |   3 +-
 typeshed/stdlib/2.7/json.pyi                       |   4 +-
 typeshed/stdlib/2.7/logging/__init__.pyi           |  92 +--
 typeshed/stdlib/2.7/logging/handlers.pyi           | 116 ++--
 typeshed/stdlib/2.7/pprint.pyi                     |  11 +-
 typeshed/stdlib/2.7/re.pyi                         |  50 +-
 typeshed/stdlib/2.7/socket.pyi                     |   6 +-
 typeshed/stdlib/2.7/subprocess.pyi                 |  10 +-
 typeshed/stdlib/2.7/sys.pyi                        |   2 +-
 typeshed/stdlib/2.7/tempfile.pyi                   |  65 +-
 typeshed/stdlib/2.7/threading.pyi                  |   2 +-
 typeshed/stdlib/2.7/typing.pyi                     |   7 +-
 typeshed/stdlib/2.7/urlparse.pyi                   |  13 +-
 typeshed/stdlib/3.3/xml/etree/ElementTree.pyi      |   9 -
 typeshed/stdlib/3.4/xml/etree/ElementTree.pyi      |   9 -
 typeshed/stdlib/3.5/xml/etree/ElementTree.pyi      |   9 -
 typeshed/stdlib/3/__future__.pyi                   |   9 +-
 typeshed/stdlib/3/_ast.pyi                         |   2 +-
 typeshed/stdlib/3/_io.pyi                          |  48 --
 typeshed/stdlib/3/builtins.pyi                     |  18 +-
 typeshed/stdlib/3/calendar.pyi                     |   2 +-
 typeshed/stdlib/3/codecs.pyi                       |   2 +-
 typeshed/stdlib/3/datetime.pyi                     |   2 +-
 typeshed/stdlib/3/email/__init__.pyi               |  31 +-
 typeshed/stdlib/3/email/_policybase.pyi            |  34 --
 typeshed/stdlib/3/email/charset.pyi                |  44 +-
 typeshed/stdlib/3/email/contentmanager.pyi         |  39 +-
 typeshed/stdlib/3/email/errors.pyi                 |  34 +-
 typeshed/stdlib/3/email/feedparser.pyi             |  43 +-
 typeshed/stdlib/3/email/generator.pyi              |  49 +-
 typeshed/stdlib/3/email/header.pyi                 |  44 +-
 typeshed/stdlib/3/email/headerregistry.pyi         | 232 ++++----
 typeshed/stdlib/3/email/message.pyi                | 211 ++++---
 typeshed/stdlib/3/email/parser.pyi                 |  66 ++-
 typeshed/stdlib/3/email/policy.pyi                 |  84 ++-
 typeshed/stdlib/3/getopt.pyi                       |   8 +-
 typeshed/stdlib/3/getpass.pyi                      |   2 +-
 typeshed/stdlib/3/gettext.pyi                      |  71 +--
 typeshed/stdlib/3/html/__init__.pyi                |   2 +-
 typeshed/stdlib/3/html/parser.pyi                  |  47 +-
 typeshed/stdlib/3/io.pyi                           | 307 ++++++----
 typeshed/stdlib/3/os/__init__.pyi                  |   3 +
 typeshed/stdlib/3/re.pyi                           |  68 ++-
 typeshed/stdlib/3/socket.pyi                       |  10 +-
 typeshed/stdlib/3/socketserver.pyi                 |  84 ++-
 typeshed/stdlib/3/ssl.pyi                          | 414 +++++++------
 typeshed/stdlib/3/subprocess.pyi                   |  13 +-
 typeshed/stdlib/3/sys.pyi                          |   9 +-
 typeshed/stdlib/3/tkinter/__init__.pyi             | 660 +++++++++++++++++++++
 typeshed/stdlib/3/tkinter/constants.pyi            |  83 +++
 typeshed/stdlib/3/tkinter/ttk.pyi                  | 158 +++++
 typeshed/stdlib/3/typing.pyi                       |   7 +-
 typeshed/stdlib/3/urllib/request.pyi               | 202 ++++++-
 typeshed/stdlib/3/urllib/response.pyi              |  36 +-
 typeshed/stdlib/3/urllib/robotparser.pyi           |  23 +-
 typeshed/third_party/2.7/requests/__init__.pyi     |   1 +
 typeshed/third_party/2.7/requests/api.pyi          |  17 +-
 typeshed/third_party/2.7/six/moves/__init__.pyi    |   1 +
 typeshed/third_party/3/requests/__init__.pyi       |   1 +
 typeshed/third_party/3/six/moves/__init__.pyi      |   1 +
 .../third_party/3/six/moves/urllib/request.pyi     |   2 +-
 .../third_party/3/six/moves/urllib/response.pyi    |   8 -
 .../third_party/3/six/moves/urllib_response.pyi    |  12 +-
 112 files changed, 3801 insertions(+), 1444 deletions(-)
 delete mode 100644 scripts/pyxlslave.py~
 create mode 100644 typeshed/stdlib/2.7/getopt.pyi
 delete mode 100644 typeshed/stdlib/3/_io.pyi
 delete mode 100644 typeshed/stdlib/3/email/_policybase.pyi
 create mode 100644 typeshed/stdlib/3/tkinter/__init__.pyi
 create mode 100644 typeshed/stdlib/3/tkinter/constants.pyi
 create mode 100644 typeshed/stdlib/3/tkinter/ttk.pyi

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/mypy.git



More information about the debian-med-commit mailing list