473,498 Members | 1,737 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Invisible function attributes

Python 2.3
def foo(): .... foo.a = 1
.... vars(foo) {} foo()
vars(foo) {'a': 1}


So it would appear that function attributes are not really
there until the first call to the function. If that is the
intended behaviour, it is really weird. I couldn't find any
explicit discussion of this topic in the LRM.

Thanks if anyone can shed some light on this,

-- O.L.
Jul 18 '05 #1
10 2295
Olivier Lefevre wrote:
Python 2.3
def foo():
... foo.a = 1
...
vars(foo)
{}
foo()
vars(foo)


{'a': 1}
So it would appear that function attributes are not really
there until the first call to the function. If that is the
intended behaviour, it is really weird. I couldn't find any
explicit discussion of this topic in the LRM.

Thanks if anyone can shed some light on this,

-- O.L.


Makes sense to me.

The foo.a = 1 line should never be executed until foo() is executed.
Thus, foo.a is never set before the call to foo.

- TL

Jul 18 '05 #2
def foo():
try:
foo.a += 1 # executed every time you call the function
except AttributeError:
foo.a = 1 # set to one if it's not already there

foo.b = 1 # executed once

print vars(foo) # function body not yet called {'b': 1}

for i in range(3):
foo()
print vars(foo)

Loop output is

{'a': 1, 'b': 1}
{'a': 2, 'b': 1}
{'a': 3, 'b': 1}

That is all perfectly sane as code in the function body is never executed
unless you call the function, whereas code on the module level is executed
immediately as the module is imported. So put foo.attr = ... into the
function body iff you want it to execute every time the function is
invoked; otherwise put it into the module startup code, i. e. do not indent
it.

Peter

Jul 18 '05 #3

"Olivier Lefevre" <le******@yahoo.com> wrote in message
news:51**************************@posting.google.c om...
Python 2.3
def foo(): ... foo.a = 1


If you want foo to be attributed before it is called, move the setter
outside the function.
def foo(): pass .... foo.a = 1
vars(foo)

{'a': 1}

Terry J Reedy
Jul 18 '05 #4
le******@yahoo.com (Olivier Lefevre) writes:
[...]
So it would appear that function attributes are not really
there until the first call to the function. If that is the
Not function attributes in general, just those that are first assigned
to in the function body. No special rule here, though, because...

intended behaviour, it is really weird. I couldn't find any
explicit discussion of this topic in the LRM.

Thanks if anyone can shed some light on this,


....what I'm guessing you haven't figured out yet is that everything
works like this in Python. For example, what might be called a 'class
declaration' in other languages isn't really a declaration in Python,
it's code that gets executed at runtime. Same is true of functions:

if WANT_SPAM:
def sayhello(): print "spam"
else:
def sayhello(): print "eggs"

sayhello()
And your foo.a = 1 isn't a declaration (Python doesn't have them,
really), it's just an attribute assignment.
John
Jul 18 '05 #5
Thanks to all those who replied.
...what I'm guessing you haven't figured out yet is that everything
works like this in Python.


Very possibly. I am coming to python from Java and I want to investigate
the weird stuff precisely because either it's a one-off (in which case
I'll make a note to myself to ignore it and not use it) or it holds the
key to what is specific about the language. I seem to have hit pay dirt
with this one ;-)

Nudged by the dot syntax, I was thinking of this function attribute as
if it were a sort of class member (i.e., pretending for a while this
function is a class) and, since functions can't have instances, treating
it as a sort of static member of the function, which should be available
as soon as declared. Obviously I got it all wrong. Instead, they work
like local variables except that they "persist" after the function has
exited. That still feels weird to me. What are they used for? Give me
a compelling reason to have such a beast in the language.

OTOH, does this behaviour have anything to do with so-called "futures"?

-- O.L.
Jul 18 '05 #6

"Olivier Lefevre" <le******@yahoo.com> wrote in message
news:51**************************@posting.google.c om...
Thanks to all those who replied.
...what I'm guessing you haven't figured out yet is that everything
works like this in Python.
Very possibly. I am coming to python from Java and I want to investigate
the weird stuff precisely because either it's a one-off (in which case
I'll make a note to myself to ignore it and not use it) or it holds the
key to what is specific about the language. I seem to have hit pay dirt
with this one ;-)

Nudged by the dot syntax, I was thinking of this function attribute as
if it were a sort of class member (i.e., pretending for a while this
function is a class) and, since functions can't have instances, treating
it as a sort of static member of the function, which should be available
as soon as declared. Obviously I got it all wrong. Instead, they work
like local variables except that they "persist" after the function has
exited. That still feels weird to me. What are they used for? Give me
a compelling reason to have such a beast in the language.


I don't know of a really compelling reason, other than it simply
works that way. Like everything else in the language, functions
are objects, which means that they have a dictionary at their
core. Therefore, functions can have attributes.

The only use I can think of would be definitely advanced
programming. Functions are first class objects, which means
they can be rebound anywhere you want them. If you find
a good reason to do that, then as an extension you might find
a reason to add attributes to classify what you've got so you
can manage the process.

As I said, I'm reaching with this one...

OTOH, does this behaviour have anything to do with so-called "futures"?
No. Future is a feature so that experimental features can be added to the
language in one release, and then made standard in a future release.

John Roth
-- O.L.

Jul 18 '05 #7
Of course the inevitable question is why do you want to do this? Consider
creating a class instead (with a __call__ method if you want to call the
instance as a function).

class Foo:
a = 1 # pre-initialized property
def __call__(self):
print self.a

foo = Foo()
foo()
# prints 1

Bob Gailer
bg*****@alum.rpi.edu
303 442 2625
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.506 / Virus Database: 303 - Release Date: 8/1/2003

Jul 18 '05 #8
le******@yahoo.com (Olivier Lefevre) writes:
Nudged by the dot syntax, I was thinking of this function attribute as
if it were a sort of class member (i.e., pretending for a while this
function is a class) and, since functions can't have instances, treating
it as a sort of static member of the function, which should be available
as soon as declared.
There is no declaration in Python; you just create attributes by
binding objects to names.
Obviously I got it all wrong. Instead, they work like local
variables except that they "persist" after the function has exited.
Hmmm. No. Functions are first class objects, and you can dynamically
add attributes to them as you go along (as is the case for many, but
not all, other types of objects).

Do you realize that the foo identifier you used in your example is not
inextricably linked to any function whose name is foo? The name of a
function, and the variables to which it is bound are two different
concepts.

Consequently, the foo.a in the function body only _coincidentally_
refers to an attribute of the function in which it appears.

Consider:
def foo(arg): foo.a = arg .... bar = foo # Now the function is known by two different names
bar(3)
foo.a 3 foo = 1 # Now the function called "foo" can only be accessed via bar !
bar(4) Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "<stdin>", line 1, in foo
TypeError: 'int' object has only read-only attributes (assign to .a) bar # I call it "bar", bit it thinks it's called "foo" <function foo at 0x815e71c>


The error at "bar(4)" in the above should hint at the fact that the
"foo" in "foo.a" in the definition of the function foo, does not refer
to the function itself but to whatever object which happens to be
bound to the name "foo" at the time the function is being exectuted.
What are they used for? Give me a compelling reason to have such a
beast in the language.


Now there's a good question :-) I haven't found a use for these
myself ... but then I haven't looked very hard for one.

Given that function attributes were added to the language (in version
2.1 or 2.2 ?), I guess someone felt a need for them, and Guido agreed.
Jul 18 '05 #9
> Python has no declarations, only executable statements.

I think this was the key to my confusion in this case.
bar(4)

Traceback (most recent call last):
TypeError: 'int' object has only read-only attributes (assign to .a)


The way I read this, it says that a was bound to the name foo,
not to the function foo stood for at the time of that function's
definition; you are saying as much. Thus "foo.a" has to be looked
up and resolved anew for each call. This must be costly. Why was
it done this way?

OTOH I read the func attr PEP and it says that they are
implemented via a dict inside the function object. If so,
shouldn't they be bound to the function object rather than
to its name?? Or is func_dict itself an attribute?

-- O.L.
Jul 18 '05 #10
Crumbs, is this thread still running?

le******@yahoo.com (Olivier Lefevre) writes:
Python has no declarations, only executable statements.
I think this was the key to my confusion in this case.


Certainly part of it.

>> bar(4)

Traceback (most recent call last):
TypeError: 'int' object has only read-only attributes (assign to .a)


The way I read this, it says that a was bound to the name foo,


I'm not sure what's in your mind, and I'm only looking at this one
message (the rest aren't in my newsreader) but that traceback says you
tried to assign to an attribute on an integer, like so:

3.a = "bananas"
Doesn't make a lot of sense!

(Of course, you probably were assigning to a named integer, not a
literal

foo = 3
foo.a = "bananas"
)

[...] OTOH I read the func attr PEP and it says that they are
implemented via a dict inside the function object. If so,
shouldn't they be bound to the function object rather than
to its name??
They are.

Or is func_dict itself an attribute?


It is.
John
Jul 18 '05 #11

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

Similar topics

11
1995
by: Saqib Ali | last post by:
Please excuse me, this is a fairly involved question that will likely require you to save the file below to a file and open it in a browser. I use Mozilla 1.5, so the problem I describe below...
5
8195
by: Harry Gould | last post by:
To all, I'm a newbie here, so please bear with me. I develop web pages for a company intranet where Internet Explorer 6 is the standard. Now I must develop a public internet website that is...
67
5944
by: Sandy.Pittendrigh | last post by:
Here's a question I don't know the answer to: I have a friend who makes very expensive, hand-made bamboo flyrods. He's widely recognized (in the fishing industry) as one of the 3-5 'best' rod...
6
14672
by: Selden McCabe | last post by:
I have a form with a bunch of image buttons. When the user moves the mouse over a button, I want to do two things: 1. change the Imagebutton's picture, and 2. make another control visible. I'm...
1
4521
by: Graham Charles | last post by:
I'm trying to create a standard "hidden" table. However, using this code, my tables are not displayed in the database window *even* when I choose to show Hidden and System objects from the Options...
0
1138
by: COHENMARVIN | last post by:
I have a page that has a menu running down the left side. When I load a wide gridview into the page, that gridview doesn't fit to the right of the menu. So it gets moved below the menu. I tried...
2
1254
by: lanmind | last post by:
Hello, I have a PHP script that returns a PHP variable's value (a number in this case) inside an XML document to the client. Is it possible to make this number invisible when the user views the...
1
6444
by: Beamor | last post by:
function art_menu_xml_parcer($content, $showSubMenus) { $doc = new DOMDocument(); $doc->loadXML($content);//this is the line in question $parent = $doc->documentElement; $elements =...
0
7125
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,...
0
7002
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6887
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7379
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4910
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4590
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1419
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
291
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.