[Python-checkins] devguide: Add a note to say that you need to purge build artefacts after switching from

nick.coghlan python-checkins at python.org
Tue Sep 18 14:35:45 CEST 2012


http://hg.python.org/devguide/rev/9ea5d869d3c2
changeset:   549:9ea5d869d3c2
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Tue Sep 18 22:35:36 2012 +1000
summary:
  Add a note to say that you need to purge build artefacts after switching from Python 2 to Python 3 or vice-versa in a single checkout

files:
  faq.rst |  6 ++++++
  1 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/faq.rst b/faq.rst
--- a/faq.rst
+++ b/faq.rst
@@ -304,6 +304,12 @@
 
 Adding the ``-v`` option to ``hg update`` will list all updated files.
 
+Note that, due to some previously built executables being used as a part of
+the build process, you may sometimes run into issues when attempting to
+switch between Python 2.x and Python 3.x branches. In these cases, it is
+best to run a ``make distclean``to ensure that all previously built files
+are removed.
+
 
 I want to keep a separate working copy per development branch, is it possible?
 ------------------------------------------------------------------------------

-- 
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list