Re: [Python-Dev] warnings about missing __init__.py in toplevel directories

2006-05-27 Thread Ronald Oussoren
On 27-mei-2006, at 8:49, Martin v. Löwis wrote: > Ronald Oussoren wrote: >> Some time ago a warning was introduced for directories on sys.path >> that don't contain an __init__.py but have the same name as a >> package/ >> module that is being imported. >> >> Is it intentional that this trigger

Re: [Python-Dev] warnings about missing __init__.py in toplevel directories

2006-05-26 Thread Martin v. Löwis
Ronald Oussoren wrote: > Some time ago a warning was introduced for directories on sys.path > that don't contain an __init__.py but have the same name as a package/ > module that is being imported. > > Is it intentional that this triggers for toplevel imports? These > warnings are triggered i

Re: [Python-Dev] warnings about missing __init__.py in toplevel directories

2006-05-26 Thread Guido van Rossum
On 5/26/06, Ronald Oussoren <[EMAIL PROTECTED]> wrote: > Some time ago a warning was introduced for directories on sys.path > that don't contain an __init__.py but have the same name as a package/ > module that is being imported. > > Is it intentional that this triggers for toplevel imports? Yes,

[Python-Dev] warnings about missing __init__.py in toplevel directories

2006-05-26 Thread Ronald Oussoren
Hi, Some time ago a warning was introduced for directories on sys.path that don't contain an __init__.py but have the same name as a package/ module that is being imported. Is it intentional that this triggers for toplevel imports? These warnings are triggered in the build process for PyObjC