Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #66207
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <timothy.c.delaney@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.024 |
| X-Spam-Evidence | '*H*': 0.95; '*S*': 0.00; 'python': 0.11; 'class:': 0.16; 'finney': 0.16; 'it;': 0.16; 'namespace,': 0.16; 'reinvent': 0.16; 'singleton': 0.16; ':-)': 0.16; 'wrote:': 0.18; 'module': 0.19; 'import': 0.22; 'creating': 0.23; 'module,': 0.24; '>': 0.26; 'van': 0.27; 'header:In-Reply-To:1': 0.27; 'point': 0.28; 'tim': 0.29; 'message-id:@mail.gmail.com': 0.30; 'writes:': 0.31; 'to:name:python-list': 0.33; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'ben': 0.38; 'e.g.': 0.38; 'needed': 0.38; 'to:addr:python-list': 0.38; 'resource': 0.38; 'to:addr:python.org': 0.39; 'skip:\xe2 10': 0.65; 'effectively': 0.66; '8bit%:40': 0.68 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Bvo1GnquhsESbXicDKoLzNLMasx/5X9GGSYl2lpOQlU=; b=N/8GrCKIzYO35bePDsNtkIvBoqzcsVUMfF2UoDZyBdJUmKFpdGpDqRoCHcP8SguuXJ SC5pQ93Kt36JfywTXxRiHg8sf8w6//C7rqMu+01qePPI0qxZyRe0YMR6c+0wW0rnO6Sa Q0kpfu7znPxjuSftgKg9ioDRlcnHpXUcl2OJstjqdUwNEYRgkkWjUm98HGi6DERDUOYH 6u95Uact5nmy53X07sWDWCat8PCqF9dtZU0xUxD6neheAOi7LAn0lKyyMgBGeRl/w3bo r83DADQrTwqN7vbEGjNasUNfZRQ84dJbLkNYLB6VGUDL41yUcYCGTmK/WiMMVAfZ0bCL yd/A== |
| MIME-Version | 1.0 |
| X-Received | by 10.182.22.33 with SMTP id a1mr2667178obf.60.1392318970573; Thu, 13 Feb 2014 11:16:10 -0800 (PST) |
| In-Reply-To | <m2a9dvmlos.fsf@cochabamba.vanoostrum.org> |
| References | <fdbb58a7-87c0-4a2f-bedf-f8e3e14fa356@googlegroups.com> <mailman.6728.1392183929.18130.python-list@python.org> <roy-11BAB5.00555912022014@news.panix.com> <bm0v9iFpuquU1@mid.individual.net> <mailman.6750.1392199807.18130.python-list@python.org> <m2a9dvmlos.fsf@cochabamba.vanoostrum.org> |
| Date | Fri, 14 Feb 2014 06:16:10 +1100 |
| Subject | Re: singleton ... again |
| From | Tim Delaney <timothy.c.delaney@gmail.com> |
| To | Python-List <python-list@python.org> |
| Content-Type | multipart/alternative; boundary=001a1133177ca7bef204f24e8572 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.6856.1392318974.18130.python-list@python.org> (permalink) |
| Lines | 51 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1392318974 news.xs4all.nl 2878 [2001:888:2000:d::a6]:45475 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:66207 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
On 13 February 2014 20:00, Piet van Oostrum <piet@vanoostrum.org> wrote: > Ben Finney <ben+python@benfinney.id.au> writes: > > Make that “somewhere” a module namespace, and you effectively have a > > Singleton for all practical purposes. So yes, I see the point of it; but > > we already have it built in :-) > > There is a use case for a singleton class: when creating the singleton > object takes considerable resources and you don't need it always in your > program. > Then have that resource in its own module, and import that module only when needed e.g. inside a function. Python already has the machinery - no need to reinvent the wheel. Tim Delaney
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-11 20:34 -0800
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-11 21:15 -0800
Re:singleton ... again Dave Angel <davea@davea.name> - 2014-02-12 00:48 -0500
Re: singleton ... again Roy Smith <roy@panix.com> - 2014-02-12 00:55 -0500
Re: singleton ... again Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-12 23:04 +1300
Re: singleton ... again Ben Finney <ben+python@benfinney.id.au> - 2014-02-12 21:09 +1100
Re: singleton ... again Roy Smith <roy@panix.com> - 2014-02-12 08:40 -0500
Re: singleton ... again Piet van Oostrum <piet@vanoostrum.org> - 2014-02-13 10:00 +0100
Re: singleton ... again Ned Batchelder <ned@nedbatchelder.com> - 2014-02-13 06:50 -0500
Re: singleton ... again Chris Angelico <rosuav@gmail.com> - 2014-02-13 22:57 +1100
Re: singleton ... again Roy Smith <roy@panix.com> - 2014-02-13 10:24 -0500
Re: singleton ... again Chris Angelico <rosuav@gmail.com> - 2014-02-14 07:03 +1100
Re: singleton ... again Robert Kern <robert.kern@gmail.com> - 2014-02-13 21:13 +0000
Re: singleton ... again Chris Angelico <rosuav@gmail.com> - 2014-02-14 08:27 +1100
Re: singleton ... again Ethan Furman <ethan@stoneleaf.us> - 2014-02-13 08:57 -0800
Re: singleton ... again Roy Smith <roy@panix.com> - 2014-02-13 12:57 -0500
Re: singleton ... again Ethan Furman <ethan@stoneleaf.us> - 2014-02-13 10:31 -0800
Re: singleton ... again Roy Smith <roy@panix.com> - 2014-02-13 14:03 -0500
Re: singleton ... again Chris Angelico <rosuav@gmail.com> - 2014-02-14 06:50 +1100
Re: singleton ... again Grant Edwards <invalid@invalid.invalid> - 2014-02-13 22:28 +0000
Re: singleton ... again Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-14 18:21 +1300
Re: singleton ... again Tim Delaney <timothy.c.delaney@gmail.com> - 2014-02-14 06:16 +1100
Re: singleton ... again Steven D'Aprano <steve@pearwood.info> - 2014-02-13 02:58 +0000
Re: singleton ... again Ben Finney <ben+python@benfinney.id.au> - 2014-02-13 14:07 +1100
Re: singleton ... again Steven D'Aprano <steve@pearwood.info> - 2014-02-13 04:24 +0000
Re: singleton ... again Chris Angelico <rosuav@gmail.com> - 2014-02-13 15:33 +1100
Re: singleton ... again Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-14 18:15 +1300
Re: singleton ... again Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-14 18:06 +1300
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-12 09:50 -0800
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-12 09:56 -0800
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-12 09:58 -0800
Re: singleton ... again Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-13 10:57 +1300
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-12 17:38 -0800
Re: singleton ... again Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-02-12 18:57 +0000
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-12 17:02 -0800
Re: singleton ... again Ned Batchelder <ned@nedbatchelder.com> - 2014-02-12 16:34 -0500
Re: singleton ... again Asaf Las <roegltd@gmail.com> - 2014-02-12 17:34 -0800
Re: singleton ... again Tim Delaney <timothy.c.delaney@gmail.com> - 2014-02-13 10:08 +1100
Re: singleton ... again Roy Smith <roy@panix.com> - 2014-02-12 20:57 -0500
Re: singleton ... again Michael Torrie <torriem@gmail.com> - 2014-02-12 15:05 -0700
csiph-web