Re: [Python-Dev] PEP476: Enabling certificate validation by default

2014-10-03 Thread Alex Gaynor
Guido van Rossum  python.org> writes:

> 
> OK, I'll hold off a bit on approving the PEP, but my intention is to approve
> it. Go Alex go!
> 

A patch for the environmental variable overrides on Windows has landed; thanks
Benjamin!

Alex

___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Backporting ensurepip to 2.7, Which commands to install?

2014-10-03 Thread Donald Stufft
I'm working on the backport of ensurepip to Python 2.7, and I realized that
I'm not sure which commands to install. Right now by default pip (outside of
the context of ensurepip) will install pip, pip2, and pip2.7 if installed in
Python 2.7. In Python 3's ensurepip we modified it so that it would install
pip3, and pip3.4, but *not* pip if it was an "install", and only pip3.4 if it
was an "alt install".

My question is, does this behavior make sense for ensurepip in 2.7? Or should
it also install the "pip" command if it is an "install"?

---
Donald Stufft
PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA

___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Backporting ensurepip to 2.7, Which commands to install?

2014-10-03 Thread Guido van Rossum
That is copying the (alt)install targets of Python's own Makefile, and I
think those are exactly right.
On Oct 3, 2014 3:07 PM, "Donald Stufft"  wrote:

> I'm working on the backport of ensurepip to Python 2.7, and I realized that
> I'm not sure which commands to install. Right now by default pip (outside
> of
> the context of ensurepip) will install pip, pip2, and pip2.7 if installed
> in
> Python 2.7. In Python 3's ensurepip we modified it so that it would install
> pip3, and pip3.4, but *not* pip if it was an "install", and only pip3.4 if
> it
> was an "alt install".
>
> My question is, does this behavior make sense for ensurepip in 2.7? Or
> should
> it also install the "pip" command if it is an "install"?
>
> ---
> Donald Stufft
> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>
> ___
> Python-Dev mailing list
> [email protected]
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/guido%40python.org
>
___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Backporting ensurepip to 2.7, Which commands to install?

2014-10-03 Thread Donald Stufft
Ok, so neither Python 2.7 nor Python 3.x’s ensure pip command will install a
``pip`` binary by default without a flag. That's fine with me, just wanted to
make sure it made sense for Python 2.x. Thanks!

> On Oct 3, 2014, at 8:31 PM, Guido van Rossum  wrote:
> 
> That is copying the (alt)install targets of Python's own Makefile, and I 
> think those are exactly right.
> 
> On Oct 3, 2014 3:07 PM, "Donald Stufft"  > wrote:
> I'm working on the backport of ensurepip to Python 2.7, and I realized that
> I'm not sure which commands to install. Right now by default pip (outside of
> the context of ensurepip) will install pip, pip2, and pip2.7 if installed in
> Python 2.7. In Python 3's ensurepip we modified it so that it would install
> pip3, and pip3.4, but *not* pip if it was an "install", and only pip3.4 if it
> was an "alt install".
> 
> My question is, does this behavior make sense for ensurepip in 2.7? Or should
> it also install the "pip" command if it is an "install"?
> 
> ---
> Donald Stufft
> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
> 
> ___
> Python-Dev mailing list
> [email protected] 
> https://mail.python.org/mailman/listinfo/python-dev 
> 
> Unsubscribe: 
> https://mail.python.org/mailman/options/python-dev/guido%40python.org 
> 

---
Donald Stufft
PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA

___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Backporting ensurepip to 2.7, Which commands to install?

2014-10-03 Thread Guido van Rossum
That's not what I meant. Python 2.7 does install "python" unless you use
altinstall.
On Oct 3, 2014 5:33 PM, "Donald Stufft"  wrote:

> Ok, so neither Python 2.7 nor Python 3.x’s ensure pip command will install
> a
> ``pip`` binary by default without a flag. That's fine with me, just wanted
> to
> make sure it made sense for Python 2.x. Thanks!
>
> On Oct 3, 2014, at 8:31 PM, Guido van Rossum  wrote:
>
> That is copying the (alt)install targets of Python's own Makefile, and I
> think those are exactly right.
> On Oct 3, 2014 3:07 PM, "Donald Stufft"  wrote:
>
>> I'm working on the backport of ensurepip to Python 2.7, and I realized
>> that
>> I'm not sure which commands to install. Right now by default pip (outside
>> of
>> the context of ensurepip) will install pip, pip2, and pip2.7 if installed
>> in
>> Python 2.7. In Python 3's ensurepip we modified it so that it would
>> install
>> pip3, and pip3.4, but *not* pip if it was an "install", and only pip3.4
>> if it
>> was an "alt install".
>>
>> My question is, does this behavior make sense for ensurepip in 2.7? Or
>> should
>> it also install the "pip" command if it is an "install"?
>>
>> ---
>> Donald Stufft
>> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>>
>> ___
>> Python-Dev mailing list
>> [email protected]
>> https://mail.python.org/mailman/listinfo/python-dev
>> Unsubscribe:
>> https://mail.python.org/mailman/options/python-dev/guido%40python.org
>>
>
> ---
> Donald Stufft
> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>
>
___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Backporting ensurepip to 2.7, Which commands to install?

2014-10-03 Thread Donald Stufft
Whoops, I misred.

So to be clear, you think:

install -> pip, pip2, pip2.7
altinstall -> pip2.7

> On Oct 3, 2014, at 8:46 PM, Guido van Rossum  wrote:
> 
> That's not what I meant. Python 2.7 does install "python" unless you use 
> altinstall.
> 
> On Oct 3, 2014 5:33 PM, "Donald Stufft"  > wrote:
> Ok, so neither Python 2.7 nor Python 3.x’s ensure pip command will install a
> ``pip`` binary by default without a flag. That's fine with me, just wanted to
> make sure it made sense for Python 2.x. Thanks!
> 
>> On Oct 3, 2014, at 8:31 PM, Guido van Rossum > > wrote:
>> 
>> That is copying the (alt)install targets of Python's own Makefile, and I 
>> think those are exactly right.
>> 
>> On Oct 3, 2014 3:07 PM, "Donald Stufft" > > wrote:
>> I'm working on the backport of ensurepip to Python 2.7, and I realized that
>> I'm not sure which commands to install. Right now by default pip (outside of
>> the context of ensurepip) will install pip, pip2, and pip2.7 if installed in
>> Python 2.7. In Python 3's ensurepip we modified it so that it would install
>> pip3, and pip3.4, but *not* pip if it was an "install", and only pip3.4 if it
>> was an "alt install".
>> 
>> My question is, does this behavior make sense for ensurepip in 2.7? Or should
>> it also install the "pip" command if it is an "install"?
>> 
>> ---
>> Donald Stufft
>> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>> 
>> ___
>> Python-Dev mailing list
>> [email protected] 
>> https://mail.python.org/mailman/listinfo/python-dev 
>> 
>> Unsubscribe: 
>> https://mail.python.org/mailman/options/python-dev/guido%40python.org 
>> 
> 
> ---
> Donald Stufft
> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
> 

---
Donald Stufft
PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA

___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Backporting ensurepip to 2.7, Which commands to install?

2014-10-03 Thread Guido van Rossum
Yes.

On Friday, October 3, 2014, Donald Stufft  wrote:

> Whoops, I misred.
>
> So to be clear, you think:
>
> install -> pip, pip2, pip2.7
> altinstall -> pip2.7
>
> On Oct 3, 2014, at 8:46 PM, Guido van Rossum  > wrote:
>
> That's not what I meant. Python 2.7 does install "python" unless you use
> altinstall.
> On Oct 3, 2014 5:33 PM, "Donald Stufft"  > wrote:
>
>> Ok, so neither Python 2.7 nor Python 3.x’s ensure pip command will
>> install a
>> ``pip`` binary by default without a flag. That's fine with me, just
>> wanted to
>> make sure it made sense for Python 2.x. Thanks!
>>
>> On Oct 3, 2014, at 8:31 PM, Guido van Rossum > > wrote:
>>
>> That is copying the (alt)install targets of Python's own Makefile, and I
>> think those are exactly right.
>> On Oct 3, 2014 3:07 PM, "Donald Stufft" > > wrote:
>>
>>> I'm working on the backport of ensurepip to Python 2.7, and I realized
>>> that
>>> I'm not sure which commands to install. Right now by default pip
>>> (outside of
>>> the context of ensurepip) will install pip, pip2, and pip2.7 if
>>> installed in
>>> Python 2.7. In Python 3's ensurepip we modified it so that it would
>>> install
>>> pip3, and pip3.4, but *not* pip if it was an "install", and only pip3.4
>>> if it
>>> was an "alt install".
>>>
>>> My question is, does this behavior make sense for ensurepip in 2.7? Or
>>> should
>>> it also install the "pip" command if it is an "install"?
>>>
>>> ---
>>> Donald Stufft
>>> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>>>
>>> ___
>>> Python-Dev mailing list
>>> [email protected]
>>> 
>>> https://mail.python.org/mailman/listinfo/python-dev
>>> Unsubscribe:
>>> https://mail.python.org/mailman/options/python-dev/guido%40python.org
>>>
>>
>> ---
>> Donald Stufft
>> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>>
>>
> ---
> Donald Stufft
> PGP: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
>
>

-- 
--Guido van Rossum (on iPad)
___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com