[Patches] [ python-Patches-532638 ] Better AttributeError formatting

noreply@sourceforge.net noreply@sourceforge.net
Wed, 20 Mar 2002 18:25:11 -0800


Patches item #532638, was opened at 2002-03-20 13:42
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=532638&group_id=5470

Category: Core (C code)
Group: Python 2.3
Status: Open
Resolution: None
Priority: 5
Submitted By: Skip Montanaro (montanaro)
Assigned to: Nobody/Anonymous (nobody)
Summary: Better AttributeError formatting

Initial Comment:
A user in c.l.py was confused when

  import m
  m.a

reported

  AttributeError: 'module' object has no attribute 
'a'

The attached patch displays the object's name in
the error message if it has a __name__ attribute.
This is a bit tricky because of the recursive 
nature of looking up an attribute during a getattr 
operation. My solution was to pull the error 
formatting code into a separate static routine
(the same basic thing happens in three places) and
define a static variable there that breaks any 
recursion.

While this might not be thread-safe, I
think it's okay in this situation.  The worst that 
should happen is you get either an extra round of
recursion while looking up a non-existent __name__
ttribute or fail to even check for __name__ and
use the default formatting when the object
actually has a __name__ attribute.  This can only
happen if you have two threads who both get 
attribute errors at the same time, and then only
if the process of looking things up takes you back
into Python code.

Perhaps a similar technique can be provided for 
other error formatting operations in object.c.

Example for objects with and without __name__
attributes:

>>> "".foo
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: str object has no attribute 'foo'
>>> import string
>>> string.foo
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: module object 'string' has no 
attribute 'foo'

Skip


----------------------------------------------------------------------

>Comment By: Tim Peters (tim_one)
Date: 2002-03-20 21:25

Message:
Logged In: YES 
user_id=31435

hasattr() is defined in terms of whether PyObject_GetAttr() 
raises an exception, and thanks to __getattr__ hooks can't 
be computed any faster than calling PyObject_GetAttr().  
Which is what the code does:

	v = PyObject_GetAttr(v, name);
	if (v == NULL) {
		PyErr_Clear();
		Py_INCREF(Py_False);
		return Py_False;
	}
	Py_DECREF(v);
	Py_INCREF(Py_True);
	return Py_True;

It's simply not going to get faster than that.

I'm not saying you can't have a "better" message here 
(although since an object's __name__ field doesn't bear any 
necessary relationship to the variable name(s) through 
which the object is referenced, it's unclear that the 
message won't actually be worse in real non-trivial cases:  
the type name is an object invariant, but the name can be 
misleading).  I am saying the tradeoff is real and needs to 
be addressed.  That's part of "good design", Dale; doing 
what feels good in the last case you remember is arguably 
not.

----------------------------------------------------------------------

Comment By: Skip Montanaro (montanaro)
Date: 2002-03-20 20:50

Message:
Logged In: YES 
user_id=44345

In theory.  Python's getattr capability is so dynamic
though I suspect there's little hasattr() can
do but call getattr() and react to the result.



----------------------------------------------------------------------

Comment By: Dale Strickland-Clark (dalesc)
Date: 2002-03-20 19:36

Message:
Logged In: YES 
user_id=457577

Surely Tim's is more an argument for fixing hasattr so it 
doesn't depend on an exception?
To limit meaningful error messages because they slow normal 
program flow screams 'bad design' to me.

----------------------------------------------------------------------

Comment By: Tim Peters (tim_one)
Date: 2002-03-20 18:09

Message:
Logged In: YES 
user_id=31435

If it's one cycle slower than it is today when the 
exception is ignored, Zope will notice it (it uses hasattr 
for blood).  Then Guido will get fired, have to pump gas in 
Amsterdam for a living, and we'll never hear from him 
again.  How badly do you want to destroy Python <wink>?

It may be fruitful to hammer out an efficient alternative 
on PythonDev.

It's not an argument about whether more info would be 
useful, although <wink> on c.l.py Dale seemed happy enough 
as soon as someone explained what 'module' was doing in his 
msg.

----------------------------------------------------------------------

Comment By: Skip Montanaro (montanaro)
Date: 2002-03-20 16:50

Message:
Logged In: YES 
user_id=44345

hmmm...  How much would I have to modify it to get you
to change your mind?  I'm pretty sure I can get rid of
the call to PyObject_HasAttrString without a lot of
effort.  I can't do much about avoiding at least one
PyObject_GetAttrString call though, which obviously
means you could wind up back in bytecode.

I jumped on this after seeing the request in c.l.py
mostly because I've wanted it from time-to-time as
well.  The extra information is useful at times.


----------------------------------------------------------------------

Comment By: Tim Peters (tim_one)
Date: 2002-03-20 13:56

Message:
Logged In: YES 
user_id=31435

I'm -1 on this because of the expense:  many apps routinely 
provoke AttributeErrors that are deliberately ignored.  All 
the time that goes into making nice messages is wasted 
then.  A "lazy" exception object that produced a string 
only when actually needed would be fine (although perhaps 
an object may manage to change its computed __name__ by 
then!).

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=532638&group_id=5470