Re: BUG: native classes don't like introspection

2005-12-19 Thread Jim Gallacher
I believe Martin Devara, the original reporter of MODPYHON-99, tested both the request and server objects. This was discussed in the "[mod_python] inspect.getmembers(req) segfaults" thread. Perhaps he can comment if he examined the connection and filter objects as well? Jim Graham Dumpleton

Re: BUG: native classes don't like introspection

2005-12-19 Thread Graham Dumpleton
Sorry if this is a duplicate. Resending as am noticing that some of my python-dev mails are disappearing into a black hole of late and am trying to work out why. The other bug: http://issues.apache.org/jira/browse/MODPYTHON-99 also recently found and related, may also be a contributor to the

Re: BUG: native classes don't like introspection

2005-12-19 Thread Graham Dumpleton
The other bug: http://issues.apache.org/jira/browse/MODPYTHON-99 also recently found and related, may also be a contributor to the problems you are seeing. As Nicolas pointed out, doing introspection on the request object seems to be the flavour of the month. BTW, has anyone though to do

Re: BUG: native classes don't like introspection

2005-12-18 Thread Nicolas Lehuen
Hi Jamie, This is a known bug : http://issues.apache.org/jira/browse/MODPYTHON-96 What's weird is that this bug has existed for a long time now, but has been discovered this month only - and reported twice since ! It is this is the subversion repository, and the fix will be released in the next

Re: BUG: native classes don't like introspection

2005-12-18 Thread Jamie Bliss
I swear, this is the last one. An access violation occurs in Python24.dlll when this python code executes: eval("reg.boundary") I don't know the internals of apache, so I can't say why or how. On 12/19/05, Jamie Bliss <[EMAIL PROTECTED]> wrote: > Introspection of mp_request and some other built-

Re: BUG: native classes don't like introspection

2005-12-18 Thread Jamie Bliss
This also comes up when using eval(). On 12/19/05, Jamie Bliss <[EMAIL PROTECTED]> wrote: > Introspection of mp_request and some other built-in classes usually > crashes Apache on my system (Win XP SP1). > > My Python version (as reported by sys.version) is '2.4.1 (#65, Jun 20 > 2005, 17:01:55) [M

BUG: native classes don't like introspection

2005-12-18 Thread Jamie Bliss
Introspection of mp_request and some other built-in classes usually crashes Apache on my system (Win XP SP1). My Python version (as reported by sys.version) is '2.4.1 (#65, Jun 20 2005, 17:01:55) [MSC v.1310 32 bit (Intel)]'. sys.api_version is 1012. (All of those values are through mod_python/Apa