[issue19728] PEP 453: enable pip by default in the Windows binary installers

2014-01-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4c7b3e7fd4ca by Martin v. Löwis in branch 'default': Issue #19728: Enable pip installation by default on Windows. http://hg.python.org/cpython/rev/4c7b3e7fd4ca -- ___ Python tracker

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2014-01-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: The command works fine; I have now integrated it into the installer. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-12-23 Thread Nick Coghlan
Nick Coghlan added the comment: I noticed that actually importing ensurepip._uninstall would clobber the helper function, so I renamed it and added some new tests to check the basics of the command line functionality from the main ensurepip tests. -- __

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd62fc2488cf by Nick Coghlan in branch 'default': Issue #19728: fix ensurepip name clash with submodule http://hg.python.org/cpython/rev/cd62fc2488cf -- ___ Python tracker

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-12-10 Thread Nick Coghlan
Nick Coghlan added the comment: Yes, it still needs to be integrated into the installer and the default state of the feature changed. I expect MvL will look into that before creating the beta 2 installer. Bumping the priority accordingly, though (I originally set it to high when we weren't su

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-12-10 Thread Donald Stufft
Donald Stufft added the comment: Is there anything left in this ticket to be done? -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-12-02 Thread STINNER Victor
Changes by STINNER Victor : -- Removed message: http://bugs.python.org/msg204999 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-12-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset b231e0c3fd26 by Victor Stinner in branch '3.3': Issue #19728: Fix sys.getfilesystemencoding() documentation http://hg.python.org/cpython/rev/b231e0c3fd26 New changeset e3c48bddf621 by Victor Stinner in branch 'default': (Merge 3.3) Issue #19728: Fix

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-30 Thread Nick Coghlan
Nick Coghlan added the comment: Oops, fumble fingered the issue number in one of the commits. This was the commit for the missing hg add Ned pointed above: http://hg.python.org/cpython/rev/04088790c077 -- ___ Python tracker

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset a0ec33efa743 by Nick Coghlan in branch 'default': Issue #19728: don't be sensitive to line endings http://hg.python.org/cpython/rev/a0ec33efa743 -- ___ Python tracker

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-29 Thread Ned Deily
Ned Deily added the comment: Looks like the buildbots are complaining, for example: http://buildbot.python.org/all/builders/AMD64%20Ubuntu%20LTS%203.x/builds/3300/steps/test/logs/stdio == FAIL: test_with_pip (test.test_venv.Ens

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-29 Thread Nick Coghlan
Nick Coghlan added the comment: Running this command in the installer should now clean up pip and setuptools: python -m ensurepip._uninstall If pip is not installed, it silently does nothing. If pip is installed, but doesn't match ensurepip.version(), it throws RuntimeError. If pip is in

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7dc4bf283857 by Nick Coghlan in branch 'default': Issue #19728: add private ensurepip._uninstall CLI http://hg.python.org/cpython/rev/7dc4bf283857 -- nosy: +python-dev ___ Python tracker

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-29 Thread Nick Coghlan
Nick Coghlan added the comment: I'm going to run with the approach of adding a private _uninstall function in ensurepip (that includes the version guard), and then a "python -m ensurepip._uninstall" submodule to invoke it from the command line. I'll also extend the with_pip test in test_venv t

[issue19728] PEP 453: enable pip by default in the Windows binary installers

2013-11-24 Thread Nick Coghlan
Nick Coghlan added the comment: Given MvL's comment above, my suggestion is that we add an "ensurepip._uninstall" submodule that uninstalls pip and setuptools if it is invoked as __main__ and the following snippet results in uinstall being set to True: try: import pip except I