Noel J. Bergman wrote ..
> Why are you people cc'ing [EMAIL PROTECTED] with this stuff?
Sorry, simply doing reply all on mailing list to a post that originally
was generated by way of JIRA web site update. Where the web site
updates get posted to a mailing list, the JIRA email address should
possi
[ http://issues.apache.org/jira/browse/MODPYTHON-55?page=all ]
Nicolas Lehuen resolved MODPYTHON-55:
-
Assign To: Nicolas Lehuen
Resolution: Fixed
Solved by adding an hand-rolled version attribute to mod_python/__init__.py.
We should find a
Graham Dumpleton wrote ..
> I still need to do more investigation work on the import hook to see if
> it is at all possible to override it just for specific modules, ie.,
> those loaded using the custom module loader. If I can find a way of
> doing this, then great. If not, am always at the risk th
On 19/05/2005, at 11:16 PM, Nicolas Lehuen wrote:
OTOH, you have implemented a clever import hook that allows users to
keep on using the familiar import statement, but I don't feel very
comfortable with this idea. I like the import statement semantics to
remain always the same, and the way import h
On 19/05/2005, at 8:32 PM, Nicolas Lehuen wrote:
I'm OK with reloading published modules being automagically reloaded,
but I'm not for standard Python modules. Published modules are or
should be developed with some assumptions in mind, namely that the
module can be reloaded at any time, that it can
2005/5/19, Graham Dumpleton <[EMAIL PROTECTED]>:
>
> On 19/05/2005, at 7:24 PM, Nicolas Lehuen wrote:
>
> >> The handle around the module worries me a bit as it would appear to
> >> work in read mode only. Ie., not sure it would work if someone tried
> >> to
> >> actually set a global variable wi
On 19/05/2005, at 7:24 PM, Nicolas Lehuen wrote:
The handle around the module worries me a bit as it would appear to
work in read mode only. Ie., not sure it would work if someone tried
to
actually set a global variable within the module from outside of it.
The lack of __setattr__() means it will
2005/5/19, Graham Dumpleton <[EMAIL PROTECTED]>:
> Nicolas Lehuen (JIRA) wrote ..
> > [
> > http://issues.apache.org/jira/browse/MODPYTHON-54?page=comments#action_65702
> > ]
> >
> > Nicolas Lehuen commented on MODPYTHON-54:
> > -
> >
> > I have added t