Apache Mod-Python - Resolved: (MODPYTHON-82) mod_python.publisher cache will not work if threading not bui

This is Interesting: Free IT Magazines  
Home > Archive > Apache Mod-Python > October 2005 > Resolved: (MODPYTHON-82) mod_python.publisher cache will not work if threading not bui





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Resolved: (MODPYTHON-82) mod_python.publisher cache will not work if threading not bui
Nicolas Lehuen (JIRA)

2005-10-24, 9:26 am

[ http://issues.apache.org/jira/brows...HON-82?page=all ]

Nicolas Lehuen resolved MODPYTHON-82:
-------------------------------------

Fix Version: 3.2.0
Resolution: Fixed
Assign To: Nicolas Lehuen

Ooops, my bad, sorry !

This is fixed now.

> mod_python.publisher cache will not work if threading not built into Python
> ---------------------------------------------------------------------------
>
> Key: MODPYTHON-82
> URL: http://issues.apache.org/jira/browse/MODPYTHON-82
> Project: mod_python
> Type: Bug
> Components: publisher
> Versions: 3.2.0
> Environment: Python --without-threads
> Reporter: Graham Dumpleton
> Assignee: Nicolas Lehuen
> Fix For: 3.2.0


>
> The mod_python.cache module will not work if threads are not built into Python.
> Mod_python error: "PythonHandler mod_python.publisher"
> Traceback (most recent call last):
> File "/home/grahamd/testing/lib/python2.3/site-packages/mod_python/apache.py", line 287, in HandlerDispatch
> log=debug)
> File "/home/grahamd/testing/lib/python2.3/site-packages/mod_python/apache.py", line 461, in import_module
> module = imp.load_module(mname, f, p, d)
> File "/home/grahamd/testing/lib/python2.3/site-packages/mod_python/publisher.py", line 50, in ?
> from cache import ModuleCache, NOT_INITIALIZED
> File "/home/grahamd/testing/lib/python2.3/site-packages/mod_python/cache.py", line 23, in ?
> from threading import Lock
> File "/home/grahamd/testing/lib/python2.3/threading.py", line 6, in ?
> import thread
> ImportError: No module named thread
> Instead of the code:
> from threading import Lock
> It should use:
> try:
> from threading import Lock
> except:
> class Lock:
> def acquire(self): pass
> def release(self): pass


Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com