Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.009 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.05; 'etc).': 0.09; 'garbage': 0.09; 'aug': 0.13; 'language': 0.14; '"automatic': 0.16; 'btw': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject: \n ': 0.16; 'subject:object': 0.16; 'subject:oriented': 0.16; 'subject:programming': 0.16; 'wrote:': 0.17; 'received:209.85.214.174': 0.21; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'message-id:@mail.gmail.com': 0.27; 'definition': 0.29; 'words': 0.29; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'received:209.85': 0.35; 'but': 0.36; 'subject:with': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'things': 0.38; 'sure': 0.38; 'to:addr:python.org': 0.39; 'received:209.85.214': 0.39; 'header:Received:5': 0.40; 'most': 0.61; 'skip:n 10': 0.63; 'subject:good': 0.84; 'rusi': 0.91 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=WiEZjtzytPZz0Q9fnZLLiYG51yevr9OtltGFlywFaNQ=; b=0Lk/Qx+HbYsNUJzJJuAXI0cK1Ghk6m9bl1/aUkXO/bSobcJYHJcIhm9UopepkyP10B XH67C9Z6SA133jTFIOyU/QXNijuJZA5/Q81Ik6HDIPZzlo/9kxZBcQ+hIaFFQAUXb1MM 5tIf47JfE2igt3MSc1FErcCVisma8CC15WorZFo82yFoeRCQFh/2NTmF4L0Nf+X7DP6a zzl9xpUM4hp85D0eig4+6e6egsNt5p6KBi2fPxB8QC4Vb58URFIyDrCaRTRi4XczTnnE UtQcd915YJt0+0ZZJP5O4SsVlVsPzGdDeyiEh5vxtDJjdJWxgCalXj7WnDEHUzs1LQtd Z1XA== MIME-Version: 1.0 In-Reply-To: References: <54b916fe-9e2d-4f9e-b533-b5ecf677c8a5@a19g2000vba.googlegroups.com> Date: Tue, 7 Aug 2012 08:44:15 +1000 Subject: Re: Looking for a good introduction to object oriented programming with Python From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1344293058 news.xs4all.nl 6871 [2001:888:2000:d::a6]:33733 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26667 On Tue, Aug 7, 2012 at 2:34 AM, rusi wrote: > BTW in "automatic garbage collection" which of the three words is most > important? Least? Most important is "garbage". I sure don't want any language I use to automatically collect non-garbage!! But in seriousness, the definition of "garbage" is one of the trickier things to work out, hence the variety of schemes (mark/sweep, refcount, various forms of cycle detection, etc). ChrisA