On Wed, 17 Jul 2002, Stefan Schwarzer wrote: > It may be or not that you encounter problems with differently specified import > statements. (A similar problem, see below, happened to me also, and it took me > a while to find it.)
Yes, you are correct. Ian and you finally made me find the mistake. It is as you say: differently specified import statements lead to one import for each of them. Actually, I had the same problem some weeks ago, when exceptions just did not get caught as they were of a different 'type' because of the different way I imported them. All my imports are now changed to 'full path': from i.cant.believe.i.type.this.nonsense.just.to.make.it.work import foo Looks ugly, gives you lots of work when you rename directory 'nonsense' to 'crap', but hey... it works for now. Thanks! -- Michael Bub ([EMAIL PROTECTED]) ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
