473,386 Members | 1,821 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Attribute reference design

Hello.
I think I'm aware of how attribute access is resolved in python. When
referencing a class instance attribute which is not defined in the
scope of the instance, Python looks for a class attribute with the
same name. (For assignment or deletion this is not the case,
thankfully.)
I've been trying to understand why? What is the reason behind, or
practical purpose of, this design decision? Anyone, please enlighten
me.

/Henrik
Jul 1 '08 #1
8 1418
chamalulu schrieb:
Hello.
I think I'm aware of how attribute access is resolved in python. When
referencing a class instance attribute which is not defined in the
scope of the instance, Python looks for a class attribute with the
same name. (For assignment or deletion this is not the case,
thankfully.)
I've been trying to understand why? What is the reason behind, or
practical purpose of, this design decision? Anyone, please enlighten
me.
How else would you resolve methods which are of course defined on the
class but invoked through the instance?

Diez
Jul 1 '08 #2
On Jul 1, 11:24 pm, "Diez B. Roggisch" <de...@nospam.web.dewrote:
chamalulu schrieb:
Hello.
I think I'm aware of how attribute access is resolved in python. When
referencing a class instance attribute which is not defined in the
scope of the instance, Python looks for a class attribute with the
same name. (For assignment or deletion this is not the case,
thankfully.)
I've been trying to understand why? What is the reason behind, or
practical purpose of, this design decision? Anyone, please enlighten
me.

How else would you resolve methods which are of course defined on the
class but invoked through the instance?
Yes, of course... You're right.
Didn't think of that.
Thank you. I'll go stand in the corner. :)

I think I haven't got this bound/unbound stuff through my head yet. If
I dir() a class instance I see the methods right there. Are they not
bound to the class instance at instanciation (and as such be
attributes of the class instance)?

/Henrik
Jul 1 '08 #3
chamalulu wrote:
On Jul 1, 11:24 pm, "Diez B. Roggisch" <de...@nospam.web.dewrote:
>chamalulu schrieb:

>>Hello.
I think I'm aware of how attribute access is resolved in python. When
referencing a class instance attribute which is not defined in the
scope of the instance, Python looks for a class attribute with the
same name. (For assignment or deletion this is not the case,
thankfully.)
I've been trying to understand why? What is the reason behind, or
practical purpose of, this design decision? Anyone, please enlighten
me.
How else would you resolve methods which are of course defined on the
class but invoked through the instance?


Yes, of course... You're right.
Didn't think of that.
Thank you. I'll go stand in the corner. :)
No need. Also, you can define a class attribute (C++ might call it a
static attribute) and access it transparently through an instance.

class C:
aClassAttribute = 123
def __init__(self, ...):
...

c = C()
.... do something with c.aClassAttribute ...
I think I haven't got this bound/unbound stuff through my head yet. If
I dir() a class instance I see the methods right there. Are they not
bound to the class instance at instanciation (and as such be
attributes of the class instance)?

/Henrik
--
http://mail.python.org/mailman/listinfo/python-list
Jul 1 '08 #4
On Jul 2, 1:17 am, Gary Herron <gher...@islandtraining.comwrote:
No need. Also, you can define a class attribute (C++ might call it a
static attribute) and access it transparently through an instance.

class C:
aClassAttribute = 123
def __init__(self, ...):
...

c = C()
... do something with c.aClassAttribute ...
Actually, this is why I started too look into the attribute reference
mechanics to begin with. Coming from mostly C# development I think
it's weird to be able to refer to class attributes (static members)
through a class instance (object). But I think I'm getting the
picture. Function objects lay flat in memory (some heap...). When
defined inside classes they are wrapped in method objects. When
refered through classes or class instances they are unbound method
objects or bound method objects respectively. Am I on the right track?
I still don't get why these methods show up when I dir() a class
instance.

/Henrik
Jul 1 '08 #5
chamalulu wrote:
On Jul 2, 1:17 am, Gary Herron <gher...@islandtraining.comwrote:
>No need. Also, you can define a class attribute (C++ might call it a
static attribute) and access it transparently through an instance.

class C:
aClassAttribute = 123
def __init__(self, ...):
...

c = C()
... do something with c.aClassAttribute ...


Actually, this is why I started too look into the attribute reference
mechanics to begin with. Coming from mostly C# development I think
it's weird to be able to refer to class attributes (static members)
through a class instance (object). But I think I'm getting the
picture. Function objects lay flat in memory (some heap...).
Not quite. Not *flat memory* or a heap. Modules are first class
objects, and functions (and classes and anything else) defined at the
top level of the module are *attributes* of the module.

Gary Herron

When
defined inside classes they are wrapped in method objects. When
refered through classes or class instances they are unbound method
objects or bound method objects respectively. Am I on the right track?
I still don't get why these methods show up when I dir() a class
instance.

/Henrik
--
http://mail.python.org/mailman/listinfo/python-list
Jul 1 '08 #6
chamalulu a écrit :
On Jul 2, 1:17 am, Gary Herron <gher...@islandtraining.comwrote:
>No need. Also, you can define a class attribute (C++ might call it a
static attribute) and access it transparently through an instance.

class C:
aClassAttribute = 123
def __init__(self, ...):
...

c = C()
... do something with c.aClassAttribute ...

Actually, this is why I started too look into the attribute reference
mechanics to begin with. Coming from mostly C# development I think
it's weird to be able to refer to class attributes (static members)
through a class instance (object). But I think I'm getting the
picture. Function objects lay flat in memory (some heap...).
Python's functions are ordinary objects, instance of type 'function'.
When
defined inside classes they are wrapped in method objects.
Nope. The wrapping happens at lookup time, thru the descriptor protocol
(the same thing that gives support for properties).
When
refered through classes or class instances they are unbound method
objects or bound method objects respectively.
That's what function.__get__() returns, yes. What is stored in the class
object's __dict__ is the plain function.
Am I on the right track?
I still don't get why these methods show up when I dir() a class
instance.
"""
Help on built-in function dir in module __builtin__:

dir(...)
dir([object]) -list of strings

Return an alphabetized list of names comprising (some of) the
attributes
of the given object, and of attributes reachable from it:

No argument: the names in the current scope.
Module object: the module attributes.
Type or class object: its attributes, and recursively the
attributes of
its bases.
Otherwise: its attributes, its class's attributes, and recursively the
attributes of its class's base classes.

"""
/Henrik
Jul 2 '08 #7
On Jul 2, 10:13 am, Bruno Desthuilliers <bruno.
42.desthuilli...@websiteburo.invalidwrote:
Nope. The wrapping happens at lookup time, thru the descriptor protocol
(the same thing that gives support for properties).
Aha, I should read up on that.
Help on built-in function dir in module __builtin__:
So, the dir function is a little more helpful than I thaught. I
checked instance.__dict__ now instead of dir(instance). No methods.
It's getting clearer. Thank you.

I think you've provided me with a good reason for class instances to
delegate attribute references to the class if class instance doesn't
contain the attribute. Diez, Gary, Bruno; Thanks for your help.

/Henrik
Jul 2 '08 #8
Le Wednesday 02 July 2008 01:17:21 Gary Herron, vous avez écrit*:
chamalulu wrote:
On Jul 1, 11:24 pm, "Diez B. Roggisch" <de...@nospam.web.dewrote:
chamalulu schrieb:
Hello.
I think I'm aware of how attribute access is resolved in python. When
referencing a class instance attribute which is not defined in the
scope of the instance, Python looks for a class attribute with the
same name. (For assignment or deletion this is not the case,
thankfully.)
I've been trying to understand why? What is the reason behind, or
practical purpose of, this design decision? Anyone, please enlighten
me.

How else would you resolve methods which are of course defined on the
class but invoked through the instance?
Yes, of course... You're right.
Didn't think of that.
Thank you. I'll go stand in the corner. :)

No need. Also, you can define a class attribute (C++ might call it a
static attribute) and access it transparently through an instance.

class C:
aClassAttribute = 123
def __init__(self, ...):
...

c = C()
... do something with c.aClassAttribute ...
Be very careful with that, as it looks like C++ or similar other OO languages,
but python handles it in a strange way if you assign a value to such an
attribute. It took me a long time to understand what happens here:

class Foo (object) :
bar = 0

foo = Foo()
print '(1) Foo.bar: %d' % Foo.bar
print '(1) foo.bar: %d' % foo.bar

Foo.bar += 1
print '(2) Foo.bar: %d' % Foo.bar
print '(2) foo.bar: %d' % foo.bar

foo.bar += 1
print '(3) Foo.bar: %d' % Foo.bar
print '(3) foo.bar: %d' % foo.bar

here's the output:

(1) Foo.bar: 0
(1) foo.bar: 0
(2) Foo.bar: 1
(2) foo.bar: 1
(3) Foo.bar: 1 # hey dude, where is my bar ?
(3) foo.bar: 2

In the third case, you might expect foo.bar += 1 to just increment Foo.bar,
but actually it doesn't. I first thought it was a bug, but it's not. When you
write foo.bar += 1 (equivalent to foo.bar = foo.bar + 1), python first looks
for a bar attribute, finds it in the class members, and then creates an
instance member with the result. Things would be different with a mutable
type implementing the += operator.

I discovered this in a middle of a project and it was hard to track all these
assignments in my code to correct them, so I'd suggest to always access class
members through the class instead of the instance, unless you have no choice
or know exactly what you are doing.

--
Cédric Lucantis
Jul 2 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Brian Genisio | last post by:
Hello all, I am developing a class where speed is important, and memory size is also important. I need to give the user of the class read-only access to one of the private members (size as an...
24
by: Charles Crume | last post by:
Hello; My "index.htm" page has 3 frames (content, navigation bar, and logo). I set the "SRC" of the "logo" frame to a blank gif image and then want to change it's contents after the other two...
0
by: Jeff User | last post by:
Here is what I have and what I would like to do: I am building a web client application. I add a web reference to some web service server to my project so that now I can call the web service. A...
1
by: D Ratcliffe | last post by:
Hello In a nutshell, I am looping through an XML document in a for loop, and I want to insert a given value as an element to each tag as I go along. i.e.: for (int i=0; i <...
2
by: Jeff User | last post by:
Here is what I have and what I would like to do: I am building a web client application. I add a web reference to some web service server to my project so that now I can call the web service. A...
6
by: ken.carlino | last post by:
>From http://www.parashift.com/c++-faq-lite/references.html#faq-8.6, it said "Use references when you can, and pointers when you have to." And I need to convert this java class to c++: public...
2
by: keith | last post by:
In an MSDN article on high quality design principles combined with standards driven code, Microsoft states: that the image title attribute should display when users roll over the image and that...
3
by: Eric Mahurin | last post by:
Is there a standard way to get a descriptor object for an arbitrary object attribute - independent of whether it uses the descriptor/ property protocol or not. I want some kind of...
3
by: kjell | last post by:
Hi, I wonder if someone may have a solution to a small problem I'm experiencing with a C++ program? I'm have two classes in my application that provides methods for setting parameters in the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.