Mercurial > p > roundup > code
view roundup/dist/command/install_lib.py @ 8155:e9af08743759 permission-performance
Add check_factory
For Permission objects where we're given a filter function but no check
function, manufacture a check function.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Mon, 11 Nov 2024 14:32:25 +0100 |
| parents | 42bf0a707763 |
| children |
line wrap: on
line source
from roundup.dist.command.build import build_message_files, check_manifest from setuptools.command.install_lib import install_lib as base class install_lib(base): def run(self): check_manifest() build_message_files(self) base.run(self)
