Why do pythonistas call the current reference "self" and not "this"? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T01:04:37Zhttp://stackoverflow.com/feeds/question/1079983http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this8Why do pythonistas call the current reference "self" and not "this"?e-satis2009-07-03T16:06:00Z2009-07-04T03:56:41Z
<p>Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP.</p>
<p>I know that Python is older than Java, but I can't figure out where does this come from. Especially since you can use any name instead of "self" : the program will work fine.</p>
<p>So where does this convention come from ?</p>
http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1079995#107999514Answer by tragomaskhalos for Why do pythonistas call the current reference "self" and not "this"?tragomaskhalos2009-07-03T16:09:38Z2009-07-03T16:09:38Z<p>Smalltalk, which predates Java of course.</p>
http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1080001#108000114Answer by duffymo for Why do pythonistas call the current reference "self" and not "this"?duffymo2009-07-03T16:11:11Z2009-07-03T16:11:11Z<p>Check the <a href="http://python-history.blogspot.com/2009/02/adding-support-for-user-defined-classes.html" rel="nofollow">history of Python</a> for user defined classes:</p>
<blockquote>
<p>Instead, one simply defines a function whose first argument corresponds to the instance, which by convention is named "self." For example:</p>
</blockquote>
<pre><code>def spam(self,y):
print self.x, y
</code></pre>
<blockquote>
<p>This approach resembles something I
had seen in Modula-3, which had
already provided me with the syntax
for import and exception handling.</p>
</blockquote>
<p>It's a choice as good as any other. You might ask why C++, Java, and C# chose "this" just as easily.</p>
http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1080192#108019227Answer by Jim Ferrans for Why do pythonistas call the current reference "self" and not "this"?Jim Ferrans2009-07-03T17:09:52Z2009-07-03T23:58:36Z<p>Smalltalk-80, released by Xerox in 1980, used <code>self</code> (1980). Objective-C (early 1980s) layers Smalltalk features over C, so it uses <code>self</code> too. Modula-3 (1988) and Python (late 1980s) follow this tradition.</p>
<p>C++, also dating from the early 1980s, chose <code>this</code> instead of <code>self</code>. Since Java was designed to be familiar to C/C++ developers, it uses <code>this</code> too.</p>
http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1081235#10812352Answer by fortran for Why do pythonistas call the current reference "self" and not "this"?fortran2009-07-04T00:54:30Z2009-07-04T00:54:30Z<p>I think that since it's explicity declared it makes more sense seeing an actual argument called "self" rather than "this". From the grammatical point of view at last, "self" is not as context dependant as "this".</p>
<p>I don't know if I made myself clear enough, but anyway this is just a subjective appreciation.</p>
http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1081454#10814544Answer by cdleary for Why do pythonistas call the current reference "self" and not "this"?cdleary2009-07-04T03:56:41Z2009-07-04T03:56:41Z<p>The primary inspiration was Modula-3, which Guido was introduced to at DEC: </p>
<blockquote>
<p>the Modula-3 final report was being
written there at about the same time.
What I learned there showed up in
Python's exception handling, modules,
and the fact that methods explicitly
contain “self” in their parameter
list.</p>
</blockquote>
<p>-- Guido, <a href="http://www.linuxjournal.com/article/2959" rel="nofollow">Linux Journal Interviews Guido van Rossum</a></p>