Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eternal-september.org!feeder.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Marko Rauhamaa Newsgroups: comp.lang.python Subject: Re: confused about the different built-in functions in Python Date: Mon, 26 May 2014 23:32:40 +0300 Organization: A noiseless patient Spider Lines: 12 Message-ID: <87ioosffh3.fsf@elektro.pacujo.net> References: <648e6136a80.00000651codemonkey@inbox.com> <6C977160E42.0000036Ccodemonkey@inbox.com> <87r43gfjqy.fsf@elektro.pacujo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: mx05.eternal-september.org; posting-host="ff5cf27ef3d5b31f034d3b72bdc27a41"; logging-data="12669"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/VcDgIGn/iiG+MATbBezcI" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) Cancel-Lock: sha1:WJPG0diZuqHFtT8pZ9s7ZZ35SX0= sha1:h75MFIpSqRezFbO78awYhrMkc5w= Xref: csiph.com comp.lang.python:72088 Christian Heimes : > Python creates a new bound method object every time. A bound method > object is a callable object that keeps a strong reference to the > function, class and object. The bound method object adds the object as > first argument to the function (aka 'self'). I stand corrected. I had thought the trampoline ("bound method object") was created once and for all. Marko