Hi!
Now that we (currently me and Jukka) are working on modular typeshed, we think there are two things underspecified in PEP 561 about stub-only packages. Namely:
* What to do with distributions that have only modules, but not packages? Since it is not easy to add a data file (like .pyi) not in a package, we use "dummy" packages named module_name-stubs with a single __init__.pyi.
* What to do with packages that have different stub files for Python 2 and 3 (for example six)? Currently we just add two packages to the distribution, one six-stubs (as specified by PEP 561) and another six-python2-stubs.
Are there any opinions/comments on these two points?
--
Ivan