Message4690

Author pedronis
Recipients djc, dov, pv
Date 2007-12-25.13:17:28
Content
easy_install obscurely substitutes the builtin file type with a bound method.

setup.py imports version.py which imports util.py which fails subclassing file
because of that

the easiest fix without touching easy_install itself is to move the import of
util in version.py inside the function using it, an alternative would be to make
version not depend on util anymore by redefining nulldev there.
History
Date User Action Args
2007-12-25 13:17:28pedronissetmessageid: <1198588648.38.0.908701615396.issue799@selenic.com>
2007-12-25 13:17:28pedronissetrecipients: + dov, pv, djc
2007-12-25 13:17:28pedronislinkissue799 messages
2007-12-25 13:17:28pedroniscreate