[ http://issues.apache.org/jira/browse/MODPYTHON-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 ca
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
I suggest:
try:
from threading import Lock
except:
from dummy_threading import Lock
Nick
req.sendfile(filename) sends an incorrect number of bytes when filename is a
symlink
Key: MODPYTHON-84
URL: http://issues.apache.org/jira/browse/MODPYTHON-84
Project: mod_python
Typ
[ http://issues.apache.org/jira/browse/MODPYTHON-84?page=all ]
Work on MODPYTHON-84 started by Jim Gallacher
> req.sendfile(filename) sends an incorrect number of bytes when filename is a
> symlink
>
>
[ http://issues.apache.org/jira/browse/MODPYTHON-67?page=all ]
Jim Gallacher resolved MODPYTHON-67:
Fix Version: 3.2.0
Resolution: Fixed
I'm not sure why this was not marked as resolved earlier, but the fix has been
committed so I'm markin