replace __all__ with @public.add decorator
Project description
Installation
$ [sudo] pip install public
Features
- replace
__all__
with@public.add
decorator
before
__all__ = ["func"] def func():
after
import public @public.add def func():
Examples
>>> import public >>> @public.add def func(): pass >>> @public.add class Cls: pass >>> __all__ ['Cls','func'] >>> public.add("name") >>> public.add(*["name1","name2"]) >>> __all__ ['Cls','func','name','name1','name2']
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
public-2020.12.3.tar.gz
(2.1 kB
view hashes)