[Python-Dev] Re: typo in PEP 636

2021-03-23 Thread codeofdusk
Thanks all! Approved the PR.

 

Bill

 

From: Guido van Rossum  
Sent: Tuesday, 23 March 2021 14:14
To: codeofd...@gmail.com
Cc: Python-Dev 
Subject: Re: [Python-Dev] typo in PEP 636

 

Sorry, I see Jelle already did this. 
https://github.com/python/peps/pull/1891/files

 

On Tue, Mar 23, 2021 at 11:13 AM Guido van Rossum mailto:gu...@python.org> > wrote:

Thanks for your keen eye, Bill!

 

If you want to, you can submit a PR to the peps repo 
(https://github.com/python/peps) to fix the typo directly.

 

On Tue, Mar 23, 2021 at 10:25 AM mailto:codeofd...@gmail.com> > wrote:

Hello,

The GUI section of PEP 636 reads: “It will also requires that the event has a 
position attribute that matches the (x, y) pattern”. It should read “It will 
also require that the event has a position attribute that matches the (x, y) 
pattern”.

 

Thanks,

Bill

___
Python-Dev mailing list -- python-dev@python.org <mailto:python-dev@python.org> 
To unsubscribe send an email to python-dev-le...@python.org 
<mailto:python-dev-le...@python.org> 
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/GD27GMRKSAXTIIHKFCQMICEAAUILKNAS/
Code of Conduct: http://python.org/psf/codeofconduct/



-- 

--Guido van Rossum (python.org/~guido <http://python.org/~guido> )

Pronouns: he/him  
<http://feministing.com/2015/02/03/how-using-they-as-a-singular-pronoun-can-change-the-world/>
 (why is my pronoun here?)



-- 

--Guido van Rossum (python.org/~guido <http://python.org/~guido> )

Pronouns: he/him  
<http://feministing.com/2015/02/03/how-using-they-as-a-singular-pronoun-can-change-the-world/>
 (why is my pronoun here?)

___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/EAGA37FB5R2MEBPDHFFFUFTUGSYSVTL7/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: typo in PEP 636

2021-03-23 Thread Guido van Rossum
Sorry, I see Jelle already did this.
https://github.com/python/peps/pull/1891/files

On Tue, Mar 23, 2021 at 11:13 AM Guido van Rossum  wrote:

> Thanks for your keen eye, Bill!
>
> If you want to, you can submit a PR to the peps repo (
> https://github.com/python/peps) to fix the typo directly.
>
> On Tue, Mar 23, 2021 at 10:25 AM  wrote:
>
>> Hello,
>>
>> The GUI section of PEP 636 reads: “It will also requires that the event
>> has a position attribute that matches the (x, y) pattern”. It should read
>> “It will also require that the event has a position attribute that matches
>> the (x, y) pattern”.
>>
>>
>>
>> Thanks,
>>
>> Bill
>> ___
>> Python-Dev mailing list -- python-dev@python.org
>> To unsubscribe send an email to python-dev-le...@python.org
>> https://mail.python.org/mailman3/lists/python-dev.python.org/
>> Message archived at
>> https://mail.python.org/archives/list/python-dev@python.org/message/GD27GMRKSAXTIIHKFCQMICEAAUILKNAS/
>> Code of Conduct: http://python.org/psf/codeofconduct/
>>
>
>
> --
> --Guido van Rossum (python.org/~guido)
> *Pronouns: he/him **(why is my pronoun here?)*
> 
>


-- 
--Guido van Rossum (python.org/~guido)
*Pronouns: he/him **(why is my pronoun here?)*

___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/CZQX6EQEUE2JNW4WX5Z6ZWWNUUB2JNZM/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: typo in PEP 636

2021-03-23 Thread Guido van Rossum
Thanks for your keen eye, Bill!

If you want to, you can submit a PR to the peps repo (
https://github.com/python/peps) to fix the typo directly.

On Tue, Mar 23, 2021 at 10:25 AM  wrote:

> Hello,
>
> The GUI section of PEP 636 reads: “It will also requires that the event
> has a position attribute that matches the (x, y) pattern”. It should read
> “It will also require that the event has a position attribute that matches
> the (x, y) pattern”.
>
>
>
> Thanks,
>
> Bill
> ___
> Python-Dev mailing list -- python-dev@python.org
> To unsubscribe send an email to python-dev-le...@python.org
> https://mail.python.org/mailman3/lists/python-dev.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-dev@python.org/message/GD27GMRKSAXTIIHKFCQMICEAAUILKNAS/
> Code of Conduct: http://python.org/psf/codeofconduct/
>


-- 
--Guido van Rossum (python.org/~guido)
*Pronouns: he/him **(why is my pronoun here?)*

___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/OUIXIKKM2EWDM372FLGZ7GVBFDSMWZEU/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: typo in PEP 636

2021-03-23 Thread Jelle Zijlstra
Submitted a PR to fix it: https://github.com/python/peps/pull/1891. In the
future, feel free to submit a PR directly to the PEP repo for this sort of
minor fix.

El mar, 23 mar 2021 a las 10:22,  escribió:

> Hello,
>
> The GUI section of PEP 636 reads: “It will also requires that the event
> has a position attribute that matches the (x, y) pattern”. It should read
> “It will also require that the event has a position attribute that matches
> the (x, y) pattern”.
>
>
>
> Thanks,
>
> Bill
> ___
> Python-Dev mailing list -- python-dev@python.org
> To unsubscribe send an email to python-dev-le...@python.org
> https://mail.python.org/mailman3/lists/python-dev.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-dev@python.org/message/GD27GMRKSAXTIIHKFCQMICEAAUILKNAS/
> Code of Conduct: http://python.org/psf/codeofconduct/
>
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/LTTTLH64IFRI7G2V6JXXD565C4WBG7FW/
Code of Conduct: http://python.org/psf/codeofconduct/