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 terry.reedy
Recipients Marcus.Smith, Saimadhav.Heblikar, belopolsky, dstufft, erickhoo, markroseman, ncoghlan, paul.moore, peter.otten, rhettinger, terry.reedy, upendra-k14
Date 2016-03-28.18:21:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1459189280.84.0.313706109174.issue23551@psf.upfronthosting.co.za>
In-reply-to
Content
Sunday morning I posted "Adding a Pip GUI to IDLE and idlelib (GSOC project)" to the pydev list requesting that any objections to the current plan be raised and resolved soon, before final acceptance of a  student proposal and official initiation of work on it.

About ensurepip (point 1a on Raymond's list): ensurepip is a package in the stdlib.  Regardless of how we later run pip, its presence can be tested on startup by trying to import it. If not present, we should ask whether to install it or nor.  It can be installed either by running 'python -m ensurepip' in a subprocess or by doing what ensurepip.__main__ does:
  import ensurepip; ensurepip._main
History
Date User Action Args
2016-03-28 18:21:20terry.reedysetrecipients: + terry.reedy, rhettinger, paul.moore, ncoghlan, peter.otten, belopolsky, markroseman, dstufft, Marcus.Smith, Saimadhav.Heblikar, upendra-k14, erickhoo
2016-03-28 18:21:20terry.reedysetmessageid: <1459189280.84.0.313706109174.issue23551@psf.upfronthosting.co.za>
2016-03-28 18:21:20terry.reedylinkissue23551 messages
2016-03-28 18:21:20terry.reedycreate