From f8c26057aa0c55855be13e29d885e46eb13dc588 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 17 May 2007 21:52:13 +0000 Subject: [PATCH] Add some additional info about removing a module. --- pep-3108.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pep-3108.txt b/pep-3108.txt index 55777783f..f957822df 100644 --- a/pep-3108.txt +++ b/pep-3108.txt @@ -60,9 +60,14 @@ The procedure to thoroughly remove a module is: #. Remove the docs. #. Delete the reference to the removed docs in ``Doc/Makefile.deps`` and ``Doc/lib/lib.tex``. +#. If possible, build the docs. (cd Doc ; make) #. Run the regression test suite; watch out for tests that are skipped because an import failed for the removed module. +If a deprecation warning is added to 2.6, it would be better to make +all the changes to 2.6, merge the changes into the 3k branch, then +perform the procedure above. This will avoid some merge conflicts. + Previously deprecated ---------------------