[Python-checkins] r72788 - in python/branches/py3k: Makefile.pre.in

ronald.oussoren python-checkins at python.org
Tue May 19 21:07:43 CEST 2009


Author: ronald.oussoren
Date: Tue May 19 21:07:43 2009
New Revision: 72788

Log:
Merged revisions 72787 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72787 | ronald.oussoren | 2009-05-19 21:06:38 +0200 (Tue, 19 May 2009) | 8 lines
  
  This patch ensures that the pydoc_data package gets installed. This is needed
  to make it possible to use pydoc to get access to the language reference.
  
  That is, without this patch the folllowing won't work:
  
     >>> help('if')
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Makefile.pre.in

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Tue May 19 21:07:43 2009
@@ -866,7 +866,7 @@
 		importlib/test/import_ importlib/test/source \
 		setuptools setuptools/command setuptools/tests setuptools.egg-info \
 		multiprocessing multiprocessing/dummy \
-		curses $(MACHDEPS)
+		curses pydoc_data $(MACHDEPS)
 libinstall:	build_all $(srcdir)/Lib/$(PLATDIR)
 	@for i in $(SCRIPTDIR) $(LIBDEST); \
 	do \


More information about the Python-checkins mailing list