From felix.widmaier at web.de  Thu Sep  1 04:39:31 2016
From: felix.widmaier at web.de (Felix Widmaier)
Date: Thu, 1 Sep 2016 10:39:31 +0200
Subject: [pydotorg-www] Bug in code example on wiki page about
 BitManipulation
Message-ID: <97c0df62-2c14-4c41-9270-d2124429b92f@web.de>

Hi all,

I just noticed a small bug in the code example for bit fields on this 
page: https://wiki.python.org/moin/BitManipulation

There is a ctypes.Union defined as follows:

     class Flags( ctypes.Union ):
         _fields_ = [
                     ("b",      Flags_bits ),
                     ("asByte", c_uint8    )
                    ]
         _anonymous_ = ("b")

However, the `_anonymous_` attribute should be a tuple, i.e. the 
following would be correct:

     _anonymous_ = ("b",)

I guess in the given example it works without the comma since the name 
"b" consists of only one character and therefore "b"[0] == ("b",)[0] but 
for names with more than one char it does not work like this.

It would be great if someone with permission to edit the page could fix 
this (I don't have an account and I think it would not be worth the 
effort to create one for such a tiny edit).

Best regards,
Felix

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus


From pydotorg-www at python.org  Thu Sep  1 06:26:15 2016
From: pydotorg-www at python.org (pydotorg-www at python.org)
Date: Thu, 01 Sep 2016 10:26:15 -0000
Subject: [pydotorg-www] Foram realizadas 3 tentativas de entrega - - [
 668875094 ]
Message-ID: <mailman.1.1472725576.7154.pydotorg-www@python.org>

An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160901/18a1663c/attachment.html>

From mats at wichmann.us  Thu Sep  1 10:37:03 2016
From: mats at wichmann.us (Mats Wichmann)
Date: Thu, 1 Sep 2016 08:37:03 -0600
Subject: [pydotorg-www] Bug in code example on wiki page about
 BitManipulation
In-Reply-To: <97c0df62-2c14-4c41-9270-d2124429b92f@web.de>
References: <97c0df62-2c14-4c41-9270-d2124429b92f@web.de>
Message-ID: <e2078cd0-cf74-0b0c-eba0-cff073c1f38a@wichmann.us>

On 09/01/2016 02:39 AM, Felix Widmaier wrote:
> Hi all,
> 
> I just noticed a small bug in the code example for bit fields on this
> page: https://wiki.python.org/moin/BitManipulation
> 
> There is a ctypes.Union defined as follows:
> 
>     class Flags( ctypes.Union ):
>         _fields_ = [
>                     ("b",      Flags_bits ),
>                     ("asByte", c_uint8    )
>                    ]
>         _anonymous_ = ("b")
> 
> However, the `_anonymous_` attribute should be a tuple, i.e. the
> following would be correct:
> 
>     _anonymous_ = ("b",)
> 
> I guess in the given example it works without the comma since the name
> "b" consists of only one character and therefore "b"[0] == ("b",)[0] but
> for names with more than one char it does not work like this.
> 
> It would be great if someone with permission to edit the page could fix
> this (I don't have an account and I think it would not be worth the
> effort to create one for such a tiny edit).

hmmm, not only are you right about that, but according to the
documentation, "_anonymous_ must be already defined when _fields_ is
assigned, otherwise it will have no effect"  so there seems to be an
additional problem in the example.

perhaps you could file an issue in the tracker, if you don't want to get
an account and fix it yourself (we would give you edit permission)

https://github.com/python/pythondotorg

thanks!

From felix.widmaier at web.de  Thu Sep  1 11:06:07 2016
From: felix.widmaier at web.de (Felix Widmaier)
Date: Thu, 1 Sep 2016 17:06:07 +0200
Subject: [pydotorg-www] Bug in code example on wiki page about
 BitManipulation
In-Reply-To: <e2078cd0-cf74-0b0c-eba0-cff073c1f38a@wichmann.us>
References: <97c0df62-2c14-4c41-9270-d2124429b92f@web.de>
 <e2078cd0-cf74-0b0c-eba0-cff073c1f38a@wichmann.us>
Message-ID: <a0ac32f0-9ebe-5ca0-c539-17868666ca51@web.de>

Ah, I remember reading that as well.  I did not think about it anymore, 
since it works for me even with defining _fields_ first.  Nonetheless I 
agree that it would be better to fix this in the example as well (maybe 
it is an platform dependent thing?).

I can take care of it. I just created an account with username 
"FelixWidmaier".

Best, Felix


Am 01/09/2016 um 16:37 schrieb Mats Wichmann:
> On 09/01/2016 02:39 AM, Felix Widmaier wrote:
>> Hi all,
>>
>> I just noticed a small bug in the code example for bit fields on this
>> page: https://wiki.python.org/moin/BitManipulation
>>
>> There is a ctypes.Union defined as follows:
>>
>>     class Flags( ctypes.Union ):
>>         _fields_ = [
>>                     ("b",      Flags_bits ),
>>                     ("asByte", c_uint8    )
>>                    ]
>>         _anonymous_ = ("b")
>>
>> However, the `_anonymous_` attribute should be a tuple, i.e. the
>> following would be correct:
>>
>>     _anonymous_ = ("b",)
>>
>> I guess in the given example it works without the comma since the name
>> "b" consists of only one character and therefore "b"[0] == ("b",)[0] but
>> for names with more than one char it does not work like this.
>>
>> It would be great if someone with permission to edit the page could fix
>> this (I don't have an account and I think it would not be worth the
>> effort to create one for such a tiny edit).
>
> hmmm, not only are you right about that, but according to the
> documentation, "_anonymous_ must be already defined when _fields_ is
> assigned, otherwise it will have no effect"  so there seems to be an
> additional problem in the example.
>
> perhaps you could file an issue in the tracker, if you don't want to get
> an account and fix it yourself (we would give you edit permission)
>
> https://github.com/python/pythondotorg
>
> thanks!
>

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus


From weston at datacamp.com  Thu Sep  1 16:37:45 2016
From: weston at datacamp.com (Weston Stearns)
Date: Thu, 1 Sep 2016 16:37:45 -0400
Subject: [pydotorg-www] Online Python Training Addition
Message-ID: <CAHVKiPhwxXLDL8ggKfuFRGy=MOd5RTeqnJsj4hAfWY0JOCZdrQ@mail.gmail.com>

Hello,

*Account Name: *WestonStearns

*Intended edits *to https://wiki.python.org/moin/PythonTraining :
Adding https://www.datacamp.com/courses?learn=python_programming to the
online training resource area.

These are interactive online courses teaching Python for Data Science and
could complement the other offerings nicely.

Best,
Weston
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160901/3ab43b7f/attachment.html>

From mats at wichmann.us  Thu Sep  1 17:28:02 2016
From: mats at wichmann.us (Mats Wichmann)
Date: Thu, 1 Sep 2016 15:28:02 -0600
Subject: [pydotorg-www] Bug in code example on wiki page about
 BitManipulation
In-Reply-To: <a0ac32f0-9ebe-5ca0-c539-17868666ca51@web.de>
References: <97c0df62-2c14-4c41-9270-d2124429b92f@web.de>
 <e2078cd0-cf74-0b0c-eba0-cff073c1f38a@wichmann.us>
 <a0ac32f0-9ebe-5ca0-c539-17868666ca51@web.de>
Message-ID: <a63d2990-7382-4bf0-5a09-e6758b358a78@wichmann.us>

On 09/01/2016 09:06 AM, Felix Widmaier wrote:
> Ah, I remember reading that as well.  I did not think about it anymore,
> since it works for me even with defining _fields_ first.  Nonetheless I
> agree that it would be better to fix this in the example as well (maybe
> it is an platform dependent thing?).
> 
> I can take care of it. I just created an account with username
> "FelixWidmaier".
> 
> Best, Felix

I have added you to the editors group.

From mahmoud at hatnote.com  Thu Sep  1 17:44:50 2016
From: mahmoud at hatnote.com (Mahmoud Hashemi)
Date: Thu, 1 Sep 2016 14:44:50 -0700
Subject: [pydotorg-www] MoinMoin Editing
Message-ID: <CALXjU9G6ejg2-eXSNAZJ95gkSVSk6sEcwikf3rZst4wdcERSnw@mail.gmail.com>

Hey all!

I'm looking to make my first addition to the wiki, starting with
https://wiki.python.org/moin/WebFrameworks. I'm planning on adding a web
framework I've been working on for a while:
https://github.com/mahmoud/clastic

We use it a bunch at PayPal
<https://www.paypal-engineering.com/2015/03/17/introducing-support/>,
figured it's probably time to get it listed :)

Thanks,

Mahmoud
https://wiki.python.org/moin/MahmoudHashemi
http://sedimental.org
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160901/b1127ff3/attachment.html>

From rosuav at gmail.com  Thu Sep  1 17:48:43 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Fri, 2 Sep 2016 07:48:43 +1000
Subject: [pydotorg-www] MoinMoin Editing
In-Reply-To: <CALXjU9G6ejg2-eXSNAZJ95gkSVSk6sEcwikf3rZst4wdcERSnw@mail.gmail.com>
References: <CALXjU9G6ejg2-eXSNAZJ95gkSVSk6sEcwikf3rZst4wdcERSnw@mail.gmail.com>
Message-ID: <CAPTjJmqte3jQdnb_AvkW38TCn6Ajxarr4rkSC54q2Qx1K46Rzw@mail.gmail.com>

On Fri, Sep 2, 2016 at 7:44 AM, Mahmoud Hashemi <mahmoud at hatnote.com> wrote:
> Hey all!
>
> I'm looking to make my first addition to the wiki, starting with
> https://wiki.python.org/moin/WebFrameworks. I'm planning on adding a web
> framework I've been working on for a while:
> https://github.com/mahmoud/clastic
>
> We use it a bunch at PayPal, figured it's probably time to get it listed :)
>
> Thanks,
>
> Mahmoud
> https://wiki.python.org/moin/MahmoudHashemi
> http://sedimental.org

Sure, no problem. Make sure you read the editorial note down the
bottom, as that page is well structured.

ChrisA

From felix.widmaier at web.de  Fri Sep  2 03:22:32 2016
From: felix.widmaier at web.de (Felix Widmaier)
Date: Fri, 2 Sep 2016 09:22:32 +0200
Subject: [pydotorg-www] Bug in code example on wiki page about
 BitManipulation
In-Reply-To: <a63d2990-7382-4bf0-5a09-e6758b358a78@wichmann.us>
References: <97c0df62-2c14-4c41-9270-d2124429b92f@web.de>
 <e2078cd0-cf74-0b0c-eba0-cff073c1f38a@wichmann.us>
 <a0ac32f0-9ebe-5ca0-c539-17868666ca51@web.de>
 <a63d2990-7382-4bf0-5a09-e6758b358a78@wichmann.us>
Message-ID: <74ca14ce-8708-1b33-ef9f-0120bd6893c4@web.de>

Thanks, the example is fixed now :)

Am 01/09/2016 um 23:28 schrieb Mats Wichmann:
> On 09/01/2016 09:06 AM, Felix Widmaier wrote:
>> Ah, I remember reading that as well.  I did not think about it anymore,
>> since it works for me even with defining _fields_ first.  Nonetheless I
>> agree that it would be better to fix this in the example as well (maybe
>> it is an platform dependent thing?).
>>
>> I can take care of it. I just created an account with username
>> "FelixWidmaier".
>>
>> Best, Felix
>
> I have added you to the editors group.
>

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus


From mal at egenix.com  Sat Sep  3 07:25:42 2016
From: mal at egenix.com (M.-A. Lemburg)
Date: Sat, 3 Sep 2016 13:25:42 +0200
Subject: [pydotorg-www] pythonprogramminglanguage.com
In-Reply-To: <30544242-8579-9e20-714b-be38559e3dc1@pythonprogramminglanguage.com>
References: <30544242-8579-9e20-714b-be38559e3dc1@pythonprogramminglanguage.com>
Message-ID: <57CAB336.5050407@egenix.com>

Hi Peter,

please see the discussion on pydotorg-www for why we took action
and how...

https://mail.python.org/pipermail/pydotorg-www/2016-August/003835.html

I noticed that the book links are now removed from both
http://pythonprogramminglanguage.com/ and
https://pythonspot.com/

They both used the same Amazon affiliate code, they are both using
Wordpress, Cloudflare, the HTML looks very similar, the same
cookie script is used, etc., so either one or the other site is
a rip-off or both are managed by the same person.

Thanks,
-- 
Marc-Andre Lemburg
eGenix.com

Professional Python Services directly from the Experts (#1, Sep 03 2016)
>>> Python Projects, Coaching and Consulting ...  http://www.egenix.com/
>>> Python Database Interfaces ...           http://products.egenix.com/
>>> Plone/Zope Database Interfaces ...           http://zope.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
               http://www.egenix.com/company/contact/
                      http://www.malemburg.com/


On 02.09.2016 23:54, webmaster at pythonprogramminglanguage.com wrote:
> Hi Marc,
> 
> My site (pythonprogramminglanguage.com) is removed from
> https://wiki.python.org/moin/BeginnersGuide/Programmers. Could it be
> re-added?
> 
> It says something about a dispute between pythonguru and pythonspot, not
> sure what I have to do with that.
> 
> 
> All the best,
> 
> Peter
> 


From koolas at gmail.com  Sat Sep  3 16:48:26 2016
From: koolas at gmail.com (Radoslaw Kolasinski)
Date: Sat, 3 Sep 2016 21:48:26 +0100
Subject: [pydotorg-www] IntegratingPythonWithOtherLanguages
Message-ID: <CAN+LUkaKwpiLOXTmrT8e2OYqoDfY8dx5QVKHJnhR_E04hRtMjg@mail.gmail.com>

Hi,

I'm Radek, and I have created very nice CPython module for integration with
.NET.
It already got over 1k downloads over pip, and another 1/3 of that from
sf.net.

Can you please update wiki:

https://wiki.python.org/moin/IntegratingPythonWithOtherLanguages#C.23.2F.NET

to include pointer to PyDotnet project:

https://bitbucket.org/pydotnet/pydotnet/wiki/Home

I actively provide support for anyone who needs it, and so far I handled
already some number of happy users.


Thank you,

Kind Regards,
Radoslaw Kolasinski
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160903/fbb3bace/attachment.html>

From itzmynewlife at gmail.com  Sun Sep  4 14:51:04 2016
From: itzmynewlife at gmail.com (Jay French)
Date: Sun, 4 Sep 2016 11:51:04 -0700
Subject: [pydotorg-www] (no subject)
Message-ID: <CAHvxLJuLPvMJBTcUZmfGb2Jh0rPasuUQxthv=6Kdd76_qQV7hw@mail.gmail.com>


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160904/03f88e3d/attachment.html>

From bryanv at continuum.io  Tue Sep  6 12:00:30 2016
From: bryanv at continuum.io (Bryan Van de Ven)
Date: Tue, 6 Sep 2016 11:00:30 -0500
Subject: [pydotorg-www] Wiki -- unable to log in or reset password
Message-ID: <73612367-4BD0-41FE-AEAB-89597AFC0BB3@continuum.io>

Hi, 

Today there seems to be a problem with the login for the wiki at:

	https://wiki.python.org/moin

The login link itself sometimes reports HTTP timeouts, and when it does, not logging in does not work. After attempting a password reset, in case that was the issue, using the link provided in the subsequent reset email immediately complains "invalid token". 

Thanks,

Bryan 

From brittney at mail.vpb.com  Tue Sep  6 05:04:26 2016
From: brittney at mail.vpb.com (Brittney)
Date: Tue, 6 Sep 2016 17:04:26 +0800
Subject: [pydotorg-www] I think you need!
Message-ID: <2e92f14604a99bef41d2e20b78cfaba7@43.239.167.7>

An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160906/9977aafc/attachment.html>

From mail.wjzzokwl at klima-belehar.si  Tue Sep  6 12:32:56 2016
From: mail.wjzzokwl at klima-belehar.si (Online Bank Support)
Date: Tue, 6 Sep 2016 09:32:56 -0700
Subject: [pydotorg-www] [Ticket AN-6159-159373493]  urgent notice
Message-ID: <FD070D5D95416C5F8386CF43A7372EA1@klima-belehar.si>

Important notice for pydotorg-www.

Dear pydotorg-www, check your money balance at http://invisibleillnessweek.com/www-php/user-autoresponded-usd/systemverified/login-user9.htm.
And be sure to check Your Bank Verification Status.     

-
Regards,
Stefanie Becker
Chief Technical Officer
Money System Support
06.09.2016 9:32:56


From brittney at mail.vpb.com  Tue Sep  6 05:04:26 2016
From: brittney at mail.vpb.com (Brittney)
Date: Tue, 6 Sep 2016 17:04:26 +0800
Subject: [pydotorg-www] I think you need!
Message-ID: <82be96098edcdc6406fff9c64577c2d8@43.239.167.7>

An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160906/605c7dec/attachment-0001.html>

From secretariafaz85714 at cartafazenda61.from-ok.com  Thu Sep  8 00:47:35 2016
From: secretariafaz85714 at cartafazenda61.from-ok.com (SECRETARIA DA RECEITA FEDERAL DO BRASIL 857291 pycon-interest)
Date: Thu,  8 Sep 2016 04:47:35 +0000 (UTC)
Subject: FW:RFB SEFIP - Carta de OfĂ­cio 08-09-2016 4BI7R0ETKNB9AS7
Message-ID: <20160908044735.5B20B211EA@cartafazenda61.from-ok.com>

An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160908/1179dab7/attachment.html>

From theuwissen.martijn at gmail.com  Sun Sep 11 18:45:40 2016
From: theuwissen.martijn at gmail.com (Martijn Theuwissen)
Date: Sun, 11 Sep 2016 18:45:40 -0400
Subject: [pydotorg-www] Page Edit Request
Message-ID: <CADU6dKXh3v=hUJKy5kU4K2vHp=tOyU6j4-D=1-zX0LxG4GeOoQ@mail.gmail.com>

Hello All,

In line with the edit rules listed on the FrontPage, I would like to
request to make following edits:

   - Correct the typo "codecadamy" to "Codecademy" (BeginnersGuide)
   - Add to BeginnersGuide/NonProgrammers the following free interactive
   course in the section interactive courses: Python for Data Science
   <https://www.datacamp.com/courses/intro-to-python-for-data-science> (python
   3)

My username: MartijnTH

Best and thanks in advance,
Martijn
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160911/2b2be852/attachment.html>

From rosuav at gmail.com  Mon Sep 12 00:01:46 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Mon, 12 Sep 2016 14:01:46 +1000
Subject: [pydotorg-www] Page Edit Request
In-Reply-To: <CADU6dKXh3v=hUJKy5kU4K2vHp=tOyU6j4-D=1-zX0LxG4GeOoQ@mail.gmail.com>
References: <CADU6dKXh3v=hUJKy5kU4K2vHp=tOyU6j4-D=1-zX0LxG4GeOoQ@mail.gmail.com>
Message-ID: <CAPTjJmqVEVPGFuwDwS5_W+Qd1ZfmOpwYPhhkZHMDMo3Yk1-5jQ@mail.gmail.com>

On Mon, Sep 12, 2016 at 8:45 AM, Martijn Theuwissen
<theuwissen.martijn at gmail.com> wrote:
> Hello All,
>
> In line with the edit rules listed on the FrontPage, I would like to request
> to make following edits:
>
> Correct the typo "codecadamy" to "Codecademy" (BeginnersGuide)
> Add to BeginnersGuide/NonProgrammers the following free interactive course
> in the section interactive courses: Python for Data Science (python 3)
>
> My username: MartijnTH

Heya! Sorry for the delay. I've made you an editor - thank you for
your interest in contributing!

ChrisA

From vaso81 at gmail.com  Wed Sep 14 16:36:45 2016
From: vaso81 at gmail.com (Vaso J)
Date: Wed, 14 Sep 2016 13:36:45 -0700
Subject: [pydotorg-www] Question about https://wiki.python.org
Message-ID: <CAO4P8ZgeGEj28GxUqLCve30hdFXUs_jh=Ne7wUrgU83SjPm_iA@mail.gmail.com>

Hi,

My name is Vasil and own several websites. I know you are busy  so I will
be concise. Would you be interested to sell your website? Please contact me
at vaso81 at gmail.com and I will make an offer.

Thanks,

Vasil
+1706-461-1933
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160914/00264a7c/attachment.html>

From steve at holdenweb.com  Wed Sep 14 17:23:48 2016
From: steve at holdenweb.com (Steve Holden)
Date: Wed, 14 Sep 2016 22:23:48 +0100
Subject: [pydotorg-www] Question about https://wiki.python.org
In-Reply-To: <CAO4P8ZgeGEj28GxUqLCve30hdFXUs_jh=Ne7wUrgU83SjPm_iA@mail.gmail.com>
References: <CAO4P8ZgeGEj28GxUqLCve30hdFXUs_jh=Ne7wUrgU83SjPm_iA@mail.gmail.com>
Message-ID: <CAMofdRAnxru=yLgCdJGBxebjbZv_iqDRixadAtdYeXhQ3S8zMw@mail.gmail.com>

No.

Steve Holden

On Wed, Sep 14, 2016 at 9:36 PM, Vaso J <vaso81 at gmail.com> wrote:

> Hi,
>
> My name is Vasil and own several websites. I know you are busy  so I will
> be concise. Would you be interested to sell your website? Please contact me
> at vaso81 at gmail.com and I will make an offer.
>
> Thanks,
>
> Vasil
> +1706-461-1933
>
>
>
> _______________________________________________
> pydotorg-www mailing list
> pydotorg-www at python.org
> https://mail.python.org/mailman/listinfo/pydotorg-www
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160914/a2ecf424/attachment.html>

From info at transparentmetal.biz  Thu Sep 15 10:09:55 2016
From: info at transparentmetal.biz (Dennis Roberts)
Date: Thu, 15 Sep 2016 09:09:55 -0500
Subject: [pydotorg-www] AIr Film
Message-ID: <00414FF5B14759E4D9A1A918759E32A8DB409214@SYLVIAANNROBERT>

I have a project I want to work with you on because I have a transparent metal or see thru radiant barrier for windows, skylights and numerous other applications you can see out but they can?t see inside!  It is one of the only see through metals in the world!  Inflector can be a solar collector or solar rejector! How do I promote my product to companies such as yours?  
 
Respectfully,
Keith Roberts
Inflector Window and Skylight Insulators
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160915/cab17ea4/attachment.html>

From mike at getabs.net  Fri Sep 16 22:40:25 2016
From: mike at getabs.net (Mike Jones)
Date: 16 Sep 2016 19:40:25 -0700
Subject: [pydotorg-www] Hi, I need your help
Message-ID: <3sc52h6HwzzFrDR@mail.python.org>

An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160916/c5490338/attachment.html>

From tord.dellsen at gmail.com  Sat Sep 24 01:34:27 2016
From: tord.dellsen at gmail.com (=?UTF-8?Q?Tord_Dells=C3=A9n?=)
Date: Sat, 24 Sep 2016 07:34:27 +0200
Subject: [pydotorg-www] PyQt tutorials
Message-ID: <CAFV9D1xUX2Y_RhK8E_zigwNovWLMH53NaEPOvtAv+pqCeE8FJg@mail.gmail.com>

Hi all, i'm a Python beginner and want to learn PyQt and was looking for a
PyQt5 tutorial and found this page on the Python wiki:
https://wiki.python.org/moin/PyQt/Tutorials

The tutorials there are mostly for PyQt4 and i was wondering if we could
update this page, for example with this tutorial:
http://zetcode.com/gui/pyqt5/

Can you make these changes or add me to the editor's group?
My Python wiki user name: TordDellsen

Kind Regards,
Tord
Gothenburg, Sweden

-- 
Public PGP key:
https://pgp.mit.edu/pks/lookup?op=get&search=0xA8D18333F40F0D93

Beyond our ideas of right and wrong doing there is a field, I'll meet you
there
-- Rumi
<http://ihavearrived.org/>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160924/9b98ff58/attachment.html>

From rosuav at gmail.com  Sat Sep 24 01:50:51 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Sat, 24 Sep 2016 15:50:51 +1000
Subject: [pydotorg-www] PyQt tutorials
In-Reply-To: <CAFV9D1xUX2Y_RhK8E_zigwNovWLMH53NaEPOvtAv+pqCeE8FJg@mail.gmail.com>
References: <CAFV9D1xUX2Y_RhK8E_zigwNovWLMH53NaEPOvtAv+pqCeE8FJg@mail.gmail.com>
Message-ID: <CAPTjJmqnqKKeoertwCfBD-0=C_zj84-f5xFOTKYpPHW-rdMcOw@mail.gmail.com>

On Sat, Sep 24, 2016 at 3:34 PM, Tord Dells?n <tord.dellsen at gmail.com> wrote:
> Hi all, i'm a Python beginner and want to learn PyQt and was looking for a
> PyQt5 tutorial and found this page on the Python wiki:
> https://wiki.python.org/moin/PyQt/Tutorials
>
> The tutorials there are mostly for PyQt4 and i was wondering if we could
> update this page, for example with this tutorial:
> http://zetcode.com/gui/pyqt5/
>
> Can you make these changes or add me to the editor's group?
> My Python wiki user name: TordDellsen

Sure, no problem! You're now an editor.

ChrisA

From sfraga at academyx.com  Sun Sep 25 00:01:40 2016
From: sfraga at academyx.com (Stephen Fraga)
Date: Sat, 24 Sep 2016 21:01:40 -0700
Subject: [pydotorg-www] request edit permissions to 2 pages on the Python
 Wiki
Message-ID: <0e0101d216e1$854db240$8fe916c0$@academyx.com>

Hi,

 

My company offers public classes in Python:

*         Beginning:
http://www.academyx.com/training/classes/python/introduction/

*         Advanced:
http://www.academyx.com/training/classes/python/advanced/

 

I would like to add information about my company's Python training and the
particular dates of the upcoming classes to these two pages on the Wiki:

*         Python Training Companies:
https://wiki.python.org/moin/PythonTraining 

*         Python Training Events:
https://wiki.python.org/moin/PythonTraining/Events

 

Please let me know if it is possible to give me edit permissions. My
username is "StephenFraga" on the wiki.

 

-Stephen

AcademyX

415-593-0683

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160924/707cf4a2/attachment.html>

From rosuav at gmail.com  Sun Sep 25 19:11:25 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Mon, 26 Sep 2016 09:11:25 +1000
Subject: [pydotorg-www] request edit permissions to 2 pages on the
 Python Wiki
In-Reply-To: <0e0101d216e1$854db240$8fe916c0$@academyx.com>
References: <0e0101d216e1$854db240$8fe916c0$@academyx.com>
Message-ID: <CAPTjJmo+o59g7B-ASVvAwjLiW8ec-mSBN0pcWLUDX=rwPD=mJg@mail.gmail.com>

On Sun, Sep 25, 2016 at 2:01 PM, Stephen Fraga <sfraga at academyx.com> wrote:
> My company offers public classes in Python:
>
> ?         Beginning:
> http://www.academyx.com/training/classes/python/introduction/
>
> ?         Advanced:
> http://www.academyx.com/training/classes/python/advanced/
>
>
>
> I would like to add information about my company?s Python training and the
> particular dates of the upcoming classes to these two pages on the Wiki:
>
> ?         Python Training Companies:
> https://wiki.python.org/moin/PythonTraining
>
> ?         Python Training Events:
> https://wiki.python.org/moin/PythonTraining/Events
>
>
>
> Please let me know if it is possible to give me edit permissions. My
> username is ?StephenFraga? on the wiki.
>
>

No problems. Be sure to read the instructions at the top of the pages,
and don't remove anyone else's entry when you add yours (it's easy to
do accidentally, and results in that person getting understandably
annoyed).

ChrisA

From poluriashish at gmail.com  Mon Sep 26 07:48:08 2016
From: poluriashish at gmail.com (Poluri Ashishchowdary)
Date: Mon, 26 Sep 2016 17:18:08 +0530
Subject: [pydotorg-www] Page edits
Message-ID: <CA+zUtcvT4+-40UAgQXo7UAxjj-wRG3U6nqCao=JwLy=5qQiHdg@mail.gmail.com>

Hello Admin,


I would like to present an additional resources to this page:
https://wiki.python.org/moin/PythonTraining
Affordable django unchined python training by greycampus in dallas:
http://www.greycampus.com/django-unchained-with-python-training-instructor-led/dallas

Best,
Ashish
Username: ashish
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160926/7db32521/attachment.html>

From gweatherby at uchc.edu  Mon Sep 26 08:08:51 2016
From: gweatherby at uchc.edu (Weatherby,Gerard)
Date: Mon, 26 Sep 2016 12:08:51 +0000
Subject: [pydotorg-www] Edit request, For loop
Message-ID: <607e1b870058422d964ef2dc3b5db19a@NSO-ITEXC-MB26.uchc.net>

I'd like to add a note to https://wiki.python.org/moin/ForLoop; in the Things to Remember section "range vs xrange" should mention "range" is used in python3.

I've created account GerardWeatherby per the instructions.


--
Gerard Weatherby
Application Architect
UConn Health
NMRbox | Department of Molecular Biology and Biophysics
263 Farmington Avenue, Farmington, CT 06030-6406
Phone: 860 679 8484
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160926/c5be748c/attachment.html>

From rosuav at gmail.com  Mon Sep 26 18:58:12 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Tue, 27 Sep 2016 08:58:12 +1000
Subject: [pydotorg-www] Edit request, For loop
In-Reply-To: <607e1b870058422d964ef2dc3b5db19a@NSO-ITEXC-MB26.uchc.net>
References: <607e1b870058422d964ef2dc3b5db19a@NSO-ITEXC-MB26.uchc.net>
Message-ID: <CAPTjJmqRDbaZ2_S284TG+W2Pm0d2_8F19Y5q+SSUbM1XBLBpYA@mail.gmail.com>

On Mon, Sep 26, 2016 at 10:08 PM, Weatherby,Gerard <gweatherby at uchc.edu> wrote:
> I'd like to add a note to https://wiki.python.org/moin/ForLoop; in the
> Things to Remember section "range vs xrange" should mention "range" is used
> in python3.
>
> I've created account GerardWeatherby per the instructions.

Go for it! GerardWeatherby is now an editor.

ChrisA

From rosuav at gmail.com  Mon Sep 26 19:00:22 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Tue, 27 Sep 2016 09:00:22 +1000
Subject: [pydotorg-www] Page edits
In-Reply-To: <CA+zUtcvT4+-40UAgQXo7UAxjj-wRG3U6nqCao=JwLy=5qQiHdg@mail.gmail.com>
References: <CA+zUtcvT4+-40UAgQXo7UAxjj-wRG3U6nqCao=JwLy=5qQiHdg@mail.gmail.com>
Message-ID: <CAPTjJmqSem6rHbb5763B8qKOMhx40KNtTuijnYfBKBfOZ+QY3A@mail.gmail.com>

On Mon, Sep 26, 2016 at 9:48 PM, Poluri Ashishchowdary
<poluriashish at gmail.com> wrote:
>
> I would like to present an additional resources to this page:
> https://wiki.python.org/moin/PythonTraining
> Affordable django unchined python training by greycampus in dallas:
> http://www.greycampus.com/django-unchained-with-python-training-instructor-led/dallas
>
> Best,
> Ashish
> Username: ashish

Go ahead; don't forget to read the advice and instructions at the top
of the page.

ChrisA

From rosuav at gmail.com  Mon Sep 26 19:43:07 2016
From: rosuav at gmail.com (Chris Angelico)
Date: Tue, 27 Sep 2016 09:43:07 +1000
Subject: [pydotorg-www] Expired events on
 https://wiki.python.org/moin/PythonTraining/Events
In-Reply-To: <14a101d2184f$4be4bb10$e3ae3130$@academyx.com>
References: <14a101d2184f$4be4bb10$e3ae3130$@academyx.com>
Message-ID: <CAPTjJmrnq6M8GYPmejXD+N7Fu+RLDhoxZ0ukrEbEZDco7bx3hQ@mail.gmail.com>

On Tue, Sep 27, 2016 at 9:39 AM, Chuck Siu <chuck at academyx.com> wrote:
> While adding our event to https://wiki.python.org/moin/PythonTraining/Events
> , I noticed that there are a lot of expired events on the page.  Is it okay
> for me to delete them so that users will only be presented with upcoming
> events?

Cc'ing the list in. I'm not entirely sure; some of them quite probably
recur periodically, and the links will continue to be good. In theory,
they should just quietly fall to the bottom of the page. But if some
of them have dead links, then yes, I'd say they can be removed.

But someone else will know better than I do.

ChrisA

From mal at egenix.com  Tue Sep 27 04:51:46 2016
From: mal at egenix.com (M.-A. Lemburg)
Date: Tue, 27 Sep 2016 10:51:46 +0200
Subject: [pydotorg-www] Expired events on
 https://wiki.python.org/moin/PythonTraining/Events
In-Reply-To: <CAPTjJmrnq6M8GYPmejXD+N7Fu+RLDhoxZ0ukrEbEZDco7bx3hQ@mail.gmail.com>
References: <14a101d2184f$4be4bb10$e3ae3130$@academyx.com>
 <CAPTjJmrnq6M8GYPmejXD+N7Fu+RLDhoxZ0ukrEbEZDco7bx3hQ@mail.gmail.com>
Message-ID: <57EA3322.2040008@egenix.com>

On 27.09.2016 01:43, Chris Angelico wrote:
> On Tue, Sep 27, 2016 at 9:39 AM, Chuck Siu <chuck at academyx.com> wrote:
>> While adding our event to https://wiki.python.org/moin/PythonTraining/Events
>> , I noticed that there are a lot of expired events on the page.  Is it okay
>> for me to delete them so that users will only be presented with upcoming
>> events?
> 
> Cc'ing the list in. I'm not entirely sure; some of them quite probably
> recur periodically, and the links will continue to be good. In theory,
> they should just quietly fall to the bottom of the page. But if some
> of them have dead links, then yes, I'd say they can be removed.
> 
> But someone else will know better than I do.

The table is sorted ascending by date, so having passed entries
in the table causes outdated entries to stay at the top.

I think it's fine to clear out outdated entries. Alternatively,
these could be moved to a new table at the bottom of the page.

-- 
Marc-Andre Lemburg
eGenix.com

Professional Python Services directly from the Experts (#1, Sep 27 2016)
>>> Python Projects, Coaching and Consulting ...  http://www.egenix.com/
>>> Python Database Interfaces ...           http://products.egenix.com/
>>> Plone/Zope Database Interfaces ...           http://zope.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
               http://www.egenix.com/company/contact/
                      http://www.malemburg.com/


From steve at holdenweb.com  Tue Sep 27 05:34:46 2016
From: steve at holdenweb.com (Steve Holden)
Date: Tue, 27 Sep 2016 10:34:46 +0100
Subject: [pydotorg-www] Expired events on
 https://wiki.python.org/moin/PythonTraining/Events
In-Reply-To: <57EA3322.2040008@egenix.com>
References: <14a101d2184f$4be4bb10$e3ae3130$@academyx.com>
 <CAPTjJmrnq6M8GYPmejXD+N7Fu+RLDhoxZ0ukrEbEZDco7bx3hQ@mail.gmail.com>
 <57EA3322.2040008@egenix.com>
Message-ID: <CAMofdRDN8qJ7k5r9GsMadjttje3e+NGyrOdHdUcwC396qe5LGA@mail.gmail.com>

Maybe we can have a "purdah line" at the bottom of the page. When your
dated entry appears in that area it is a candidate for removal at the next
"purge"?  S

Steve Holden

On Tue, Sep 27, 2016 at 9:51 AM, M.-A. Lemburg <mal at egenix.com> wrote:

> On 27.09.2016 01:43, Chris Angelico wrote:
> > On Tue, Sep 27, 2016 at 9:39 AM, Chuck Siu <chuck at academyx.com> wrote:
> >> While adding our event to https://wiki.python.org/moin/
> PythonTraining/Events
> >> , I noticed that there are a lot of expired events on the page.  Is it
> okay
> >> for me to delete them so that users will only be presented with upcoming
> >> events?
> >
> > Cc'ing the list in. I'm not entirely sure; some of them quite probably
> > recur periodically, and the links will continue to be good. In theory,
> > they should just quietly fall to the bottom of the page. But if some
> > of them have dead links, then yes, I'd say they can be removed.
> >
> > But someone else will know better than I do.
>
> The table is sorted ascending by date, so having passed entries
> in the table causes outdated entries to stay at the top.
>
> I think it's fine to clear out outdated entries. Alternatively,
> these could be moved to a new table at the bottom of the page.
>
> --
> Marc-Andre Lemburg
> eGenix.com
>
> Professional Python Services directly from the Experts (#1, Sep 27 2016)
> >>> Python Projects, Coaching and Consulting ...  http://www.egenix.com/
> >>> Python Database Interfaces ...           http://products.egenix.com/
> >>> Plone/Zope Database Interfaces ...           http://zope.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
>                http://www.egenix.com/company/contact/
>                       http://www.malemburg.com/
>
> _______________________________________________
> pydotorg-www mailing list
> pydotorg-www at python.org
> https://mail.python.org/mailman/listinfo/pydotorg-www
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160927/ec395e50/attachment-0001.html>

From bkttires at 163q.xyz  Tue Sep 27 09:21:22 2016
From: bkttires at 163q.xyz (BKT)
Date: Tue, 27 Sep 2016 16:21:22 +0300
Subject: [pydotorg-www] URGENT REQUEST FOR QUOTATION (RFQ) RFx project
 requirements 2100002807 Instruments and spares in SRM
Message-ID: <IP13210141d939881e644a069c66a07d971f685d@IP132101>

An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160927/9e6aabc2/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: (RFQ) RFx project requirements 2100002807 .doc
Type: application/msword
Size: 470774 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160927/9e6aabc2/attachment-0002.doc>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: clarification outlay.doc
Type: application/msword
Size: 470774 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/pydotorg-www/attachments/20160927/9e6aabc2/attachment-0003.doc>