Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!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.067 X-Spam-Evidence: '*H*': 0.87; '*S*': 0.00; 'def': 0.12; 'troll': 0.16; 'exception': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'value.': 0.19; '>>>': 0.22; 'import': 0.22; 'header:In-Reply-To:1': 0.27; 'function': 0.29; 'chris': 0.29; 'skip:p 30': 0.29; 'raise': 0.29; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; '13,': 0.31; 'moment': 0.34; 'received:google.com': 0.35; 'there': 0.35; 'subject:?': 0.36; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'subject:. ': 0.67; 'mar': 0.68; 'is!': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=0sAIZ0izc/wRmk6pcCmFzOFY5u117Gl5d4hUKQTVgDc=; b=csoJCS1l2x3++Y8+hsxJUvXalUym4XaIxCmh71l7f0wTPSoVAgGLmxgailZb9m3cwo edpU4AzGB/9SC4HkcmVAsb2zQADWNQg0UppSkQf6BB+NfPyzSYLSnq5WSB8/WvRHLvJs wTVWBoM2D8t+VRJFbtRUyOLzAjKKkewm0KNo03xyE3Rh4m8K+fUkIKJkLUdLz4Nm8ayZ P2Cyv0GKOkJRDPI71e/CvBnRmJ2G+7xV4Y2dHIBjds8unILRrAQEOeAFBWA3hddrWVwD w16IaxZKLSTcVR0l3TXgcvBIZfqMU3BwVVjwopvZnzyWc8tKgvFuw5uaF3CDyPcLPonw IDhA== X-Received: by 10.68.76.68 with SMTP id i4mr5540685pbw.73.1394755767857; Thu, 13 Mar 2014 17:09:27 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <53206e6a$0$2886$e4fe514c@news2.news.xs4all.nl> <53207d77$0$2886$e4fe514c@news2.news.xs4all.nl> <5320e8c9$0$29994$c3e8da3$5496439d@news.astraweb.com> <87y50el1vf.fsf@elektro.pacujo.net> <5322420e$0$29994$c3e8da3$5496439d@news.astraweb.com> From: Ian Kelly Date: Thu, 13 Mar 2014 18:08:47 -0600 Subject: Re: Deep vs. shallow copy? To: Python Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1394755770 news.xs4all.nl 2950 [2001:888:2000:d::a6]:56745 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:68345 On Thu, Mar 13, 2014 at 5:55 PM, Chris Angelico wrote: > I'm going to troll for a moment and give you a function that has no > return value. > > def procedure(): > raise Exception >>> import dis >>> dis.dis(procedure) 2 0 LOAD_GLOBAL 0 (Exception) 3 RAISE_VARARGS 1 6 LOAD_CONST 0 (None) 9 RETURN_VALUE >>> def get_procedure_return_value(): ... """Returns the return value of procedure().""" ... return procedure.__code__.co_consts[0] ... >>> print(get_procedure_return_value()) None Look, there it is!