diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-03 15:26:59 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-03 15:26:59 (GMT) |
commit | 765e94f80c753cfeb077d8a372483aff4d8f178f (patch) | |
tree | a843b777d77aa04a00673885accc7f3cd15786de /Doc/whatsnew | |
parent | 3ca4db881fe8c3d62bbb7a573270fa3c25d9894b (diff) | |
download | cpython-765e94f80c753cfeb077d8a372483aff4d8f178f.zip cpython-765e94f80c753cfeb077d8a372483aff4d8f178f.tar.gz cpython-765e94f80c753cfeb077d8a372483aff4d8f178f.tar.bz2 |
Add NEWS and whatsnew entries for the packaging module
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index a2d3af1..e1d1cb4 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -129,6 +129,19 @@ os (Patch submitted by Giampaolo Rodolà in :issue:`10784`.) +packaging +--------- + +:mod:`distutils` has undergone additions and refactoring under a new name, +:mod:`packaging`, to allow developers to break backward compatibility. +:mod:`distutils` is still provided in the standard library, but users are +encouraged to transition to :mod:`packaging`. For older versions of Python, a +backport compatible with 2.4+ and 3.1+ will be made available on PyPI under the +name :mod:`distutils2`. + +.. TODO add examples and howto to the packaging docs and link to them + + pydoc ----- |