X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2FSingleton.py;h=535a25a3d6d4dc6731dbb7bb965bdc263ea61717;hb=9af1235da5224336ede312fb5c3e0fe791bc19f0;hp=456d2ccdf3b970370623c1ecd1e58ad0a55be268;hpb=574fb13e8dc253e39da7b6259617aafa74c1ec2d;p=dak.git diff --git a/daklib/Singleton.py b/daklib/Singleton.py index 456d2ccd..535a25a3 100644 --- a/daklib/Singleton.py +++ b/daklib/Singleton.py @@ -1,13 +1,18 @@ #!/usr/bin/env python # vim:set et ts=4 sw=4: -# Singleton pattern code -# Copyright (C) 2008 Mark Hymers +""" +Singleton pattern code + +Inspiration for this very simple ABC was taken from various documents / +tutorials / mailing lists. This may not be thread safe but given that +(as I write) large chunks of dak aren't even type-safe, I'll live with +it for now -# Inspiration for this very simple ABC was taken from various documents / -# tutorials / mailing lists. This may not be thread safe but given that -# (as I write) large chunks of dak aren't even type-safe, I'll live with -# it for now +@contact: Debian FTPMaster +@copyright: 2008 Mark Hymers +@license: GNU General Public License version 2 or later +""" ################################################################################