From philippehenri.gosselin at gmail.com  Sun Dec  5 15:04:40 2021
From: philippehenri.gosselin at gmail.com (Philippe-Henri Gosselin)
Date: Sun, 5 Dec 2021 21:04:40 +0100
Subject: [pydotorg-www] Tutorial for beginners
Message-ID: <c43a5e9a-af48-f17f-16a7-816c6dea49ba@gmail.com>

Hi all,

I wrote a tutorial for beginners. We discover Python programming with 
games. At the end of the tutorial, we create a small tank game with 2D 
graphics (using Pygame).

I would like to add a link to the page 
https://wiki.python.org/moin/BeginnersGuide/NonProgrammers or 
https://wiki.python.org/moin/BeginnersGuide/Programmers.

The tutorial is here:

https://www.patternsgameprog.com/series/discover-python-and-patterns/

My login on the wiki is PhilippeGosselin

Thx!

Philippe


From rosuav at gmail.com  Sun Dec  5 17:37:08 2021
From: rosuav at gmail.com (Chris Angelico)
Date: Mon, 6 Dec 2021 09:37:08 +1100
Subject: [pydotorg-www] Tutorial for beginners
In-Reply-To: <c43a5e9a-af48-f17f-16a7-816c6dea49ba@gmail.com>
References: <c43a5e9a-af48-f17f-16a7-816c6dea49ba@gmail.com>
Message-ID: <CAPTjJmrfPQsbF_-qjFhofz-vbZ4_eVu8qz5UMt1Ui0vgrvPkqQ@mail.gmail.com>

On Mon, Dec 6, 2021 at 7:04 AM Philippe-Henri Gosselin
<philippehenri.gosselin at gmail.com> wrote:
>
> Hi all,
>
> I wrote a tutorial for beginners. We discover Python programming with
> games. At the end of the tutorial, we create a small tank game with 2D
> graphics (using Pygame).
>
> I would like to add a link to the page
> https://wiki.python.org/moin/BeginnersGuide/NonProgrammers or
> https://wiki.python.org/moin/BeginnersGuide/Programmers.
>
> The tutorial is here:
>
> https://www.patternsgameprog.com/series/discover-python-and-patterns/
>
> My login on the wiki is PhilippeGosselin
>

No problem! You're now an editor.

ChrisA

From bar94 at cornell.edu  Wed Dec  8 05:08:10 2021
From: bar94 at cornell.edu (Ben Rosenberg)
Date: Wed, 8 Dec 2021 10:08:10 +0000
Subject: [pydotorg-www] Meaningful typo in bitwise operator article
Message-ID: <MN2PR04MB692547921923AEE4C3EDDE0CA96F9@MN2PR04MB6925.namprd04.prod.outlook.com>


To whom it may concern:

In the article on bitwise operators here: https://wiki.python.org/moin/BitwiseOperators there is a meaningful typo under `~x`. It says ?This is the same as -x ? 1?, where it should be ?-x + 1?.

Best,
Ben
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/pydotorg-www/attachments/20211208/35457713/attachment.html>

From rosuav at gmail.com  Wed Dec  8 05:09:56 2021
From: rosuav at gmail.com (Chris Angelico)
Date: Wed, 8 Dec 2021 21:09:56 +1100
Subject: [pydotorg-www] Meaningful typo in bitwise operator article
In-Reply-To: <MN2PR04MB692547921923AEE4C3EDDE0CA96F9@MN2PR04MB6925.namprd04.prod.outlook.com>
References: <MN2PR04MB692547921923AEE4C3EDDE0CA96F9@MN2PR04MB6925.namprd04.prod.outlook.com>
Message-ID: <CAPTjJmp7+21NYzBVZHXAzPB9RRAVCpMk=OAY_HHbLCFVORiEyA@mail.gmail.com>

On Wed, Dec 8, 2021 at 9:08 PM Ben Rosenberg <bar94 at cornell.edu> wrote:
>
> To whom it may concern:
>
> In the article on bitwise operators here: https://wiki.python.org/moin/BitwiseOperators there is a meaningful typo under `~x`. It says ?This is the same as -x ? 1?, where it should be ?-x + 1?.
>

>>> ~5
-6
>>> -5 - 1
-6

>>> x = -5
>>> ~x
4
>>> -x - 1
4

ChrisA

From bar94 at cornell.edu  Wed Dec  8 06:54:45 2021
From: bar94 at cornell.edu (Ben Rosenberg)
Date: Wed, 8 Dec 2021 11:54:45 +0000
Subject: [pydotorg-www] Meaningful typo in bitwise operator article
In-Reply-To: <CAPTjJmp7+21NYzBVZHXAzPB9RRAVCpMk=OAY_HHbLCFVORiEyA@mail.gmail.com>
References: <MN2PR04MB692547921923AEE4C3EDDE0CA96F9@MN2PR04MB6925.namprd04.prod.outlook.com>
 <CAPTjJmp7+21NYzBVZHXAzPB9RRAVCpMk=OAY_HHbLCFVORiEyA@mail.gmail.com>
Message-ID: <a2a93d7a-8cf8-4648-b60c-9c49de92d019@email.android.com>

Sorry, looks like I was a bit hasty. Thanks for the clarification.

Ben

On Dec 8, 2021 5:10 AM, Chris Angelico <rosuav at gmail.com> wrote:
On Wed, Dec 8, 2021 at 9:08 PM Ben Rosenberg <bar94 at cornell.edu> wrote:
>
> To whom it may concern:
>
> In the article on bitwise operators here: https://wiki.python.org/moin/BitwiseOperators there is a meaningful typo under `~x`. It says ?This is the same as -x ? 1?, where it should be ?-x + 1?.
>

>>> ~5
-6
>>> -5 - 1
-6

>>> x = -5
>>> ~x
4
>>> -x - 1
4

ChrisA
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/pydotorg-www/attachments/20211208/391f57af/attachment.html>

From rosuav at gmail.com  Wed Dec  8 06:56:37 2021
From: rosuav at gmail.com (Chris Angelico)
Date: Wed, 8 Dec 2021 22:56:37 +1100
Subject: [pydotorg-www] Meaningful typo in bitwise operator article
In-Reply-To: <a2a93d7a-8cf8-4648-b60c-9c49de92d019@email.android.com>
References: <MN2PR04MB692547921923AEE4C3EDDE0CA96F9@MN2PR04MB6925.namprd04.prod.outlook.com>
 <CAPTjJmp7+21NYzBVZHXAzPB9RRAVCpMk=OAY_HHbLCFVORiEyA@mail.gmail.com>
 <a2a93d7a-8cf8-4648-b60c-9c49de92d019@email.android.com>
Message-ID: <CAPTjJmqHW5_n9nn8yZbj+Msrj89D7H-HTt7YR9KXXkWu902ETw@mail.gmail.com>

On Wed, Dec 8, 2021 at 10:54 PM Ben Rosenberg <bar94 at cornell.edu> wrote:
>
> Sorry, looks like I was a bit hasty. Thanks for the clarification.
>
> Ben
>

No probs :) A lot of people get confused by double negations (I've
seen people insist that abs(x) is x if x is positive, otherwise it's
+x).

ChrisA

From datacreative01 at gmail.com  Wed Dec 15 19:40:59 2021
From: datacreative01 at gmail.com (Brian Broumas)
Date: Wed, 15 Dec 2021 16:40:59 -0800
Subject: [pydotorg-www] request for editing permission
Message-ID: <CAAp3BypENUGJxCwhJa2yuzJ-WBVfgqq9CFeKLwN5MEQ-pO0zgA@mail.gmail.com>

Hi, I work for DataCreative, a Sacramento-based IT training company. We
offer a Python Fundamentals class
<https://datacreative.com/classes/python-programming-professional/> both
online and in-person.

I was hoping to list my company on your Python Training
<https://wiki.python.org/moin/PythonTraining> page and get added to the
editors group. My username is *BrianBroumas*.


Sincerely,

Brian Broumas
(916) 661-0992
brian at datacreative.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/pydotorg-www/attachments/20211215/5fc9be9b/attachment.html>

From rosuav at gmail.com  Wed Dec 15 21:13:16 2021
From: rosuav at gmail.com (Chris Angelico)
Date: Thu, 16 Dec 2021 13:13:16 +1100
Subject: [pydotorg-www] request for editing permission
In-Reply-To: <CAAp3BypENUGJxCwhJa2yuzJ-WBVfgqq9CFeKLwN5MEQ-pO0zgA@mail.gmail.com>
References: <CAAp3BypENUGJxCwhJa2yuzJ-WBVfgqq9CFeKLwN5MEQ-pO0zgA@mail.gmail.com>
Message-ID: <CAPTjJmqZKpoBXfqdKnCKwRVJqvD6PrRrrP52rV=c9qY=mfc4CQ@mail.gmail.com>

On Thu, Dec 16, 2021 at 11:41 AM Brian Broumas <datacreative01 at gmail.com> wrote:
>
> Hi, I work for DataCreative, a Sacramento-based IT training company. We offer a Python Fundamentals class both online and in-person.
>
> I was hoping to list my company on your Python Training page and get added to the editors group. My username is BrianBroumas.
>

No probs, go for it!

ChrisA

From martin at martinedwards.co.uk  Tue Dec 21 15:17:06 2021
From: martin at martinedwards.co.uk (Martin Edwards)
Date: Tue, 21 Dec 2021 20:17:06 +0000
Subject: [pydotorg-www] Out-of-date link
Message-ID: <CAPtwfjQRDMATRSqf+mn0PDA95u=QhjdfUXrh+H-XWOsJYKqEXA@mail.gmail.com>

Hello,

I noticed that the link to the Python Cookbook on the following Python Wiki
page is out of date:

https://wiki.python.org/moin/BeginnersGuide/Examples

I believe the URL is now:

https://code.activestate.com/recipes/langs/python/

I realise I could create an account on the wiki and then request permission
to edit, but since I'm new to Python I'm unlikely to have much to
contribute in the near future. Therefore I thought that for this small
update, I'd let you know directly rather than creating an account. I hope
that's okay.

Regards,

Martin Edwards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/pydotorg-www/attachments/20211221/b71545b3/attachment.html>

From mal at egenix.com  Wed Dec 22 04:27:27 2021
From: mal at egenix.com (Marc-Andre Lemburg)
Date: Wed, 22 Dec 2021 10:27:27 +0100
Subject: [pydotorg-www] Out-of-date link
In-Reply-To: <CAPtwfjQRDMATRSqf+mn0PDA95u=QhjdfUXrh+H-XWOsJYKqEXA@mail.gmail.com>
References: <CAPtwfjQRDMATRSqf+mn0PDA95u=QhjdfUXrh+H-XWOsJYKqEXA@mail.gmail.com>
Message-ID: <3f3dda54-df1d-3757-5a16-a665952dc587@egenix.com>

Hi Martin,

thanks for helping. I have fixed the link accordingly.

Cheers,
-- 
Marc-Andre Lemburg
eGenix.com

Professional Python Services directly from the Experts (#1, Dec 22 2021)
>>> Python Projects, Coaching and Support ...    https://www.egenix.com/
>>> Python Product Development ...        https://consulting.egenix.com/
________________________________________________________________________

::: We implement business ideas - efficiently in both time and costs :::

   eGenix.com Software, Skills and Services GmbH  Pastor-Loeh-Str.48
    D-40764 Langenfeld, Germany. CEO Dipl.-Math. Marc-Andre Lemburg
           Registered at Amtsgericht Duesseldorf: HRB 46611
               https://www.egenix.com/company/contact/
                     https://www.malemburg.com/


On 21.12.2021 21:17, Martin Edwards wrote:
> Hello,
> 
> I noticed that the link to the Python Cookbook on the following Python Wiki page
> is out of date:
> 
> https://wiki.python.org/moin/BeginnersGuide/Examples
> 
> I believe the URL is now:
> 
> https://code.activestate.com/recipes/langs/python/
> 
> I realise I could create an account on the wiki and then request permission to
> edit, but since I'm new to Python I'm unlikely to have much to contribute in the
> near future. Therefore I thought that for this small update, I'd let you know
> directly rather than creating an account. I hope that's okay.
> 
> Regards,
> 
> Martin Edwards
> 
> _______________________________________________
> pydotorg-www mailing list
> pydotorg-www at python.org
> https://mail.python.org/mailman/listinfo/pydotorg-www
> 


From pwazeng36 at gmail.com  Sat Dec 25 19:19:39 2021
From: pwazeng36 at gmail.com (Wazeng P)
Date: Sun, 26 Dec 2021 07:19:39 +0700
Subject: [pydotorg-www] (no subject)
Message-ID: <CADLMmN9oB3+CBYhOyA_V975ke1mQ8wqkaEEgncsKZX3b2GeMeA@mail.gmail.com>


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/pydotorg-www/attachments/20211226/209aaaa9/attachment.html>

From schettino72 at gmail.com  Thu Dec 30 04:03:40 2021
From: schettino72 at gmail.com (Eduardo Schettino)
Date: Thu, 30 Dec 2021 17:03:40 +0800
Subject: [pydotorg-www] Python Wiki: editor group
Message-ID: <CAHSrCY18Abk-BXmp7fLzgFEx9XGmakCU0kmgAbgMqi_jmRCUpg@mail.gmail.com>

Hi,

Please add me to python wiki Editor Group. My username is "EduardoSchettino"
I am the author of doit[1] and would like to update the entry for the
project in the build-tools page [2].

[1] https://github.com/pydoit/doit
[2] https://wiki.python.org/moin/ConfigurationAndBuildTools

Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/pydotorg-www/attachments/20211230/f4a18080/attachment.html>

From rosuav at gmail.com  Thu Dec 30 14:28:51 2021
From: rosuav at gmail.com (Chris Angelico)
Date: Fri, 31 Dec 2021 06:28:51 +1100
Subject: [pydotorg-www] Python Wiki: editor group
In-Reply-To: <CAHSrCY18Abk-BXmp7fLzgFEx9XGmakCU0kmgAbgMqi_jmRCUpg@mail.gmail.com>
References: <CAHSrCY18Abk-BXmp7fLzgFEx9XGmakCU0kmgAbgMqi_jmRCUpg@mail.gmail.com>
Message-ID: <CAPTjJmrOXCaaRG+qDOm70gC-qaFA8LX1Vk8NxuWtNCP4sOZX=g@mail.gmail.com>

On Thu, Dec 30, 2021 at 8:04 PM Eduardo Schettino <schettino72 at gmail.com> wrote:
>
> Hi,
>
> Please add me to python wiki Editor Group. My username is "EduardoSchettino"
> I am the author of doit[1] and would like to update the entry for the project in the build-tools page [2].
>
> [1] https://github.com/pydoit/doit
> [2] https://wiki.python.org/moin/ConfigurationAndBuildTools
>
> Regards
>

No problem! Go for it.

ChrisA