Re: [Pydev-code] folders in pydev projects get created as packages

2018-12-17 Thread Kelson Zawack
Ah, I see. Ok, that makes sense. Thanks Kelson > On Dec 16, 2018, at 7:33 AM, Fabio Zadrozny wrote: > > This is because in Python 3 any folder (having an __init__.py or not) below > the PYTHONPATH is a package (so, PyDev is just reflecting a change on Python > itself). > > The difference i

Re: [Pydev-code] folders in pydev projects get created as packages

2018-12-16 Thread Fabio Zadrozny
This is because in Python 3 any folder (having an __init__.py or not) below the PYTHONPATH is a package (so, PyDev is just reflecting a change on Python itself). The difference in Python 3 is that if it has an __init__.py file, it's a regular package and can't be extended from other places in the