Trying to do some OO Python with files in different directories.
I have a blank __init__.py in each directory.
It is my assumption that having an __init__.py marks the directory as a module.
I am trying to run Controller.py from the command line.
I would assume this has already been solved but cou
I am doing some OO python3 where I am using multiple dirs/sub-dirs.
So everything works fine, however when I run code __pycache__ directories are
being created in every directory touched by the execution.
Is it possible to set a configuration to be able to create these pycache
directories in a
On Tuesday, January 22, 2013 1:01:44 AM UTC-5, Terry Reedy wrote:
>
> > I am doing some OO python3 where I am using multiple dirs/sub-dirs.
>
> >
>
> > So everything works fine, however when I run code __pycache__
>
> > directories are being created in every directory touched by the
>
> > exec