You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, it is entirely possible to do something like:
frompodgen.podcastimportPodcast
instead of the intended:
frompodgenimportPodcast
This is problematic because code which uses PodGen may rely on the module names and module contents being the way they are now. It is therefore more challenging to make changes to the inner organization of PodGen.
In new minor version:
Change name of modules so they start with an underscore
Create aliases under the old public names which make available the same contents as before (to preserve backwards compatibility)
Emit DeprecationWarning when the aliases are run (i.e. imported)
In new major version:
Remove the aliases.
The text was updated successfully, but these errors were encountered:
Right now, it is entirely possible to do something like:
instead of the intended:
This is problematic because code which uses PodGen may rely on the module names and module contents being the way they are now. It is therefore more challenging to make changes to the inner organization of PodGen.
In new minor version:
In new major version:
The text was updated successfully, but these errors were encountered: