diff options
author | Guido Günther <agx@sigxcpu.org> | 2013-08-22 10:22:37 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2013-08-22 10:22:37 +0200 |
commit | d0fb6d86201d04fb9194119239ccc212302a1b6f (patch) | |
tree | cadda961bb160b42eed437396b2911620445b0a9 /gbp/tristate.py | |
parent | 938e4cd25d47a0b9230a14e55724a5c3912e2359 (diff) | |
download | git-buildpackage-d0fb6d86201d04fb9194119239ccc212302a1b6f.tar.gz git-buildpackage-d0fb6d86201d04fb9194119239ccc212302a1b6f.tar.bz2 git-buildpackage-d0fb6d86201d04fb9194119239ccc212302a1b6f.zip |
Minor docstring updates
Diffstat (limited to 'gbp/tristate.py')
-rw-r--r-- | gbp/tristate.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gbp/tristate.py b/gbp/tristate.py index 6e26c829..93610605 100644 --- a/gbp/tristate.py +++ b/gbp/tristate.py @@ -15,6 +15,10 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +""" +A switch with three states: on|off|auto +""" + class Tristate(object): """Tri-state value: on, off or auto """ ON = True # state is on == do it |