forked from python/mypy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into import-cycle
* master: (27 commits) Don't call --strict-optional and --incremental experimental (python#4642) Sync typeshed (python#4641) Fix callable types with inconsistent argument counts (python#4611) Fix example (add 'class A:') Make psutil an optional dependency (python#4634) mypy and mypy_extensions aren't posix only (python#3765) Documentation for attr support (python#4632) Use read_with_python_encoding in stubgen to handle file encoding (python#3790) Sync typeshed (python#4631) Add remaining core team emails to CREDITS (python#4629) Fix issues with attr code. (python#4628) Better support for converter in attrs plugin. (python#4607) Clean up credits (python#4626) Support type aliases in fine-grained incremental mode (python#4525) Fine-grained: Fix crash caused by unreachable class (python#4613) Treat divmod like a binary operator (python#4585) Sync typeshed (python#4605) Fine-grained: Don't infer partial types from multiple targets (python#4553) Fine-grained: Compare symbol table snapshots when following dependencies (python#4598) Fix type of forward reference to a decorated class method (python#4486) ...
- Loading branch information
Showing
52 changed files
with
4,259 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,17 @@ https://github.com/python/mypy/commits/master | |
For lists of contributors per mypy release (including typeshed) see | ||
the release blog posts at https://mypy-lang.blogspot.com/. | ||
|
||
Mypy team: | ||
Dropbox core team: | ||
|
||
Jukka Lehtosalo <[email protected]> | ||
Guido van Rossum <[email protected]> | ||
Ivan Levkivskyi | ||
Michael J. Sullivan | ||
Ivan Levkivskyi <[email protected]> | ||
Michael J. Sullivan <[email protected]> | ||
|
||
Non-Dropbox core team members: | ||
|
||
Ethan Smith | ||
Jelle Zijlstra | ||
|
||
Past Dropbox core team members: | ||
|
||
|
@@ -23,11 +28,6 @@ Past Dropbox core team members: | |
Michael Lee | ||
Reid Barton | ||
|
||
Non-Dropbox core team members: | ||
|
||
Ethan Smith | ||
Jelle Zijlstra | ||
|
||
Additional thanks to: | ||
|
||
Alex Allain | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
|
@@ -37,7 +36,6 @@ | |
author_email='[email protected]', | ||
url='http://www.mypy-lang.org/', | ||
license='MIT License', | ||
platforms=['POSIX'], | ||
py_modules=['mypy_extensions'], | ||
classifiers=classifiers, | ||
install_requires=[ | ||
|
Oops, something went wrong.