From: Michael <mi...@st...> - 2000-08-15 19:06:50
|
David Leonard wrote: > > On Mon, 14 Aug 2000, Johannes Stezenbach typed thusly: > > > Michael Ströder wrote: > > But Michael's right: You *MUST* include a warning about deleting > > the old ldapmodule.so (or ldap.dll) in the INSTALL/README > > document. It may even be a good idea to add a micro-FAQ to the > > distribution. > > Perhaps the configure script could detect this and emit a warning? Do you think people will ever percept it? Well, let's try. > import ldap; if string.find(ldap.__file__, "ldapmodule") != -1: ... > > > > And I know that there's "from _ldap import *" in ldap.py but this > > > does not import _ldap.__version__ and using "from module import *" > > > is bad behaviour anyway. > > just for you, michael i've gotten ldap.py to import __version__ :) I did add a "from _ldap import __version__" myself in ldap.py before but what about __symbols__ added in the future? We need robust and consistent behaviour for all future modifications. Ciao, Michael. |