You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`psutil` seems to import functools, which is only available from Python 2.5 onwards.
Fortunately, the only piece needed from `functools` is
`functools.wraps`, which can be readily included in `psutil._compat`.
The attached patch does that, plus a similar fix in
`test/test_psutil.py`, because `TestCase.assertIn` is not available in
Py 2.4.
It'd be great if you could push this quickly to release, because the current
`psutil` version on PyPI is broken on 2.4.
From riccardo.murri@gmail.com on August 16, 2012 16:39:45
Attachment: 0001-re-establish-compatibility-with-Python-2.4.patch
Original issue: http://code.google.com/p/psutil/issues/detail?id=318
The text was updated successfully, but these errors were encountered: