I'm reading PEP328:
The python-dev community chose absolute imports as the default because they're the more common use case and because absolute imports can provide all the functionality of relative (intra-package) imports -- albeit at the cost of difficulty when renaming package pieces higher up in the hierarchy or when moving one package inside another.
Can anyone explain the part I highlighted?
You can find an explanation of absolute vs. relative imports here.
Basically, absolute imports use the full path of the module starting from the project's root. This is useful when you're importing modules from an outside package.
When you're importing modules from within your current package, you can theoretically use a relative path. For example, assume your project has packages pkg1 and pkg2. Lets say you want to import a module from pkg1 into pkg2. You can do it like so
from ..pkg1 import module1
The advantage of this is that you can avoid changing your imports even when you update your project structure, provided that the relative paths between the imports are preserved (for example moving all packages into some new parent package). Despite this convenience, the community chose to use absolute imports as the default since they provide all the functionally which relative imports provide.