PEP 561: Add implementation links and changelog (#439)
This commit is contained in:
parent
baef778005
commit
52a444b154
46
pep-0561.rst
46
pep-0561.rst
|
@ -154,6 +154,43 @@ package has not opted into type checking, and the type checker should skip
|
|||
that package.
|
||||
|
||||
|
||||
Implementation
|
||||
==============
|
||||
|
||||
A CPython branch with a modified distutils supporting the ``typed`` setup
|
||||
keyword lives here: [impl]_. In addition, a sample package with inline types is
|
||||
available [typed_pkg]_, as well as a sample package [pkg_checker]_ which reads the metadata
|
||||
of installed packages and reports on their status as either not typed, inline
|
||||
typed, or a stub package.
|
||||
|
||||
|
||||
Acknowledgements
|
||||
================
|
||||
|
||||
This PEP would not have been possible without the ideas, feedback, and support
|
||||
of Ivan Levkivskyi, Jelle Zijlstra, Nick Coghlan, Daniel F Moisset, and
|
||||
Guido van Rossum.
|
||||
|
||||
|
||||
Version History
|
||||
===============
|
||||
|
||||
* 2017-10-26
|
||||
|
||||
* Added implementation references.
|
||||
* Added acknowledgements and version history.
|
||||
|
||||
* 2017-10-06
|
||||
|
||||
* Rewritten to use .distinfo/METADATA over a distutils specific command.
|
||||
* Clarify versioning of third party stub packages.
|
||||
|
||||
* 2017-09-11
|
||||
|
||||
* Added information about current solutions and typeshed.
|
||||
* Clarify rationale.
|
||||
|
||||
|
||||
References
|
||||
==========
|
||||
.. [1] Typeshed (https://github.com/python/typeshed)
|
||||
|
@ -161,6 +198,15 @@ References
|
|||
.. [2] PEP 484, Storing and Distributing Stub Files
|
||||
(https://www.python.org/dev/peps/pep-0484/#storing-and-distributing-stub-files)
|
||||
|
||||
.. [impl] CPython sample implementation
|
||||
(https://github.com/ethanhs/cpython/tree/typeddist)
|
||||
|
||||
.. [typed_pkg] Sample typed package
|
||||
(https://github.com/ethanhs/sample-typed-package)
|
||||
|
||||
.. [pkg_checker] Sample package checker
|
||||
(https://github.com/ethanhs/check_typedpkg)
|
||||
|
||||
Copyright
|
||||
=========
|
||||
|
||||
|
|
Loading…
Reference in New Issue