This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients Yinon, berker.peksag, eric.araujo, eric.smith, r.david.murray
Date 2014-06-26.17:56:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403805381.12.0.619188859452.issue21391@psf.upfronthosting.co.za>
In-reply-to
Content
Now that I think about it, maybe we don't need a deprecation warning.

http://legacy.python.org/dev/peps/pep-0008/#public-and-internal-interfaces

says:

"Imported names should always be considered an implementation detail. Other modules must not rely on indirect access to such imported names unless they are an explicitly documented part of the containing module's API, such as os.path or a package's __init__ module that exposes functionality from submodules."

abspath isn't in __all__, so it's arguably not part of the public API, anyway.
History
Date User Action Args
2014-06-26 17:56:21eric.smithsetrecipients: + eric.smith, Yinon, eric.araujo, r.david.murray, berker.peksag
2014-06-26 17:56:21eric.smithsetmessageid: <1403805381.12.0.619188859452.issue21391@psf.upfronthosting.co.za>
2014-06-26 17:56:21eric.smithlinkissue21391 messages
2014-06-26 17:56:20eric.smithcreate