Re: [Python-Dev] Scandir module seeking new maintainer

2016-03-29 Thread Victor Stinner
Hi,

2016-03-29 2:55 GMT+02:00 Ben Hoyt :
> I'm the author and current maintainer of the scandir module (Python 3.5's
> os.scandir but for Python 2.x and 3.x before 3.5). But I've taken on a few
> new non-programming projects and found I don't have time for the little
> improvements and fixes that are now in CPython's os.scandir and should be
> backported into the PyPI module.
>
> So I'm looking for someone who wants to take over the maintenance of the
> scandir PyPI module. It wouldn't be much work, as there are only a couple of
> fairly small issues to fix. Or it might be a good way to start for someone
> who wants to contribute to a small but useful open source module in the
> Python ecosystem.

FYI I just finished (I hope!) to bug on os.walk(bytes) on Windows with
the "emulated" scandir (since os.scandir() only works on Unicode on
Python 3.5+):
http://bugs.python.org/issue25911

Since I helped you to write your PEP 471 (scandir) as the
BDFL-delegate, I think that I now understand well scandir(). So I can
help you to maintain your backport.

Victor
___
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] Scandir module seeking new maintainer

2016-03-29 Thread Ben Hoyt
>
> So I'm looking for someone who wants to take over the maintenance of the
>> scandir PyPI module. It wouldn't be much work, as there are only a
>> couple of fairly small issues to fix. Or it might be a good way to start
>> for someone who wants to contribute to a small but useful open source
>> module in the Python ecosystem.
>>
>
> I'd be happy to, although I only have access to linux and MS Windows. This
> would be good prompting for me to get a few other *nices going, though
> (although I don't see MacOSX happening).
>

Thanks, Ethan. I don't think that would be too much of an issue -- there is
only a small amount of OS X-specific code in scandir.py.

I also see Victor Stinner's just replied. I think he would make the ideal
maintainer if he's willing, as he helped me write the PEP and code and has
been very close to scandir for a long time.

-Ben
___
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] Scandir module seeking new maintainer

2016-03-29 Thread Ben Hoyt
> FYI I just finished (I hope!) to bug on os.walk(bytes) on Windows with
> the "emulated" scandir (since os.scandir() only works on Unicode on
> Python 3.5+):
> http://bugs.python.org/issue25911
>
> Since I helped you to write your PEP 471 (scandir) as the
> BDFL-delegate, I think that I now understand well scandir(). So I can
> help you to maintain your backport.
>

Indeed -- probably better than me at this point! I haven't quite been able
to keep up with the latest CPython patches. In any case, I think you'd be
an ideal person for maintaining the backport. I know there was some
question in the past about whether you had desire/time for more open source
contributions; in that light, are you willing and do you have the time?
Though again, this isn't a big module and really just a few fixes at this
point.

-Ben
___
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] Scandir module seeking new maintainer

2016-03-29 Thread Ben Hoyt
FYI to the group: I'll discuss details with Victor privately. -Ben

On Tue, Mar 29, 2016 at 8:12 AM, Ben Hoyt  wrote:

>
>
>> FYI I just finished (I hope!) to bug on os.walk(bytes) on Windows with
>> the "emulated" scandir (since os.scandir() only works on Unicode on
>> Python 3.5+):
>> http://bugs.python.org/issue25911
>>
>> Since I helped you to write your PEP 471 (scandir) as the
>> BDFL-delegate, I think that I now understand well scandir(). So I can
>> help you to maintain your backport.
>>
>
> Indeed -- probably better than me at this point! I haven't quite been able
> to keep up with the latest CPython patches. In any case, I think you'd be
> an ideal person for maintaining the backport. I know there was some
> question in the past about whether you had desire/time for more open source
> contributions; in that light, are you willing and do you have the time?
> Though again, this isn't a big module and really just a few fixes at this
> point.
>
> -Ben
>
___
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] Scandir module seeking new maintainer

2016-03-29 Thread Ben Hoyt
Victor Stinner has agreed to take over maintenance of the backport module
-- thanks Victor! His plan is straightforward -- to backport enhancements
from CPython 3.6 and release a new PyPI version.

And thanks Ethan for volunteering as well -- I appreciate it.

-Ben

On Tue, Mar 29, 2016 at 8:38 AM, Ben Hoyt  wrote:

> FYI to the group: I'll discuss details with Victor privately. -Ben
>
>
> On Tue, Mar 29, 2016 at 8:12 AM, Ben Hoyt  wrote:
>
>>
>>
>>> FYI I just finished (I hope!) to bug on os.walk(bytes) on Windows with
>>> the "emulated" scandir (since os.scandir() only works on Unicode on
>>> Python 3.5+):
>>> http://bugs.python.org/issue25911
>>>
>>> Since I helped you to write your PEP 471 (scandir) as the
>>> BDFL-delegate, I think that I now understand well scandir(). So I can
>>> help you to maintain your backport.
>>>
>>
>> Indeed -- probably better than me at this point! I haven't quite been
>> able to keep up with the latest CPython patches. In any case, I think you'd
>> be an ideal person for maintaining the backport. I know there was some
>> question in the past about whether you had desire/time for more open source
>> contributions; in that light, are you willing and do you have the time?
>> Though again, this isn't a big module and really just a few fixes at this
>> point.
>>
>> -Ben
>>
>
>
___
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] Scandir module seeking new maintainer

2016-03-29 Thread Ethan Furman

On 03/29/2016 07:14 AM, Ben Hoyt wrote:


Victor Stinner has agreed to take over maintenance of the backport
module -- thanks Victor!


Yup, thanks Victor!


And thanks Ethan for volunteering as well -- I appreciate it.


Your welcome.  Good luck in your other endeavors!

--
~Ethan~
___
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] Not receiving bug tracker emails

2016-03-29 Thread Martin Panter
For the last ~36 hours I have stopped receiving emails for messages
posted in the bug tracker. Is anyone else having this problem? Has
anything changed recently?

I have had it set to send to my gmail.com address since the beginning.
At the moment the last bug message email is
 with “Date: Mon, 28 Mar
2016 12:19:49 +”. I have checked spam and they are not going
there.

Earlier this year I had to set up a rule to avoid lots of tracker
emails suddenly going to spam. I suspect there was something about the
emails that Google doesn’t like (though I don’t understand the
technical details). Maybe this has recently gotten worse at the Google
end?
___
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] Not receiving bug tracker emails

2016-03-29 Thread Brett Cannon
I just got an email from b.p.o so it's working at least in general.

On Tue, Mar 29, 2016, 16:31 Martin Panter  wrote:

> For the last ~36 hours I have stopped receiving emails for messages
> posted in the bug tracker. Is anyone else having this problem? Has
> anything changed recently?
>
> I have had it set to send to my gmail.com address since the beginning.
> At the moment the last bug message email is
>  with “Date: Mon, 28 Mar
> 2016 12:19:49 +”. I have checked spam and they are not going
> there.
>
> Earlier this year I had to set up a rule to avoid lots of tracker
> emails suddenly going to spam. I suspect there was something about the
> emails that Google doesn’t like (though I don’t understand the
> technical details). Maybe this has recently gotten worse at the Google
> end?
> ___
> Python-Dev mailing list
> [email protected]
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/brett%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] Not receiving bug tracker emails

2016-03-29 Thread Victor Stinner
same for me, i'm using using gmail with a @gmail.com email.

Victor

2016-03-30 1:30 GMT+02:00 Martin Panter :
> For the last ~36 hours I have stopped receiving emails for messages
> posted in the bug tracker. Is anyone else having this problem? Has
> anything changed recently?
>
> I have had it set to send to my gmail.com address since the beginning.
> At the moment the last bug message email is
>  with “Date: Mon, 28 Mar
> 2016 12:19:49 +”. I have checked spam and they are not going
> there.
>
> Earlier this year I had to set up a rule to avoid lots of tracker
> emails suddenly going to spam. I suspect there was something about the
> emails that Google doesn’t like (though I don’t understand the
> technical details). Maybe this has recently gotten worse at the Google
> end?
> ___
> Python-Dev mailing list
> [email protected]
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: 
> https://mail.python.org/mailman/options/python-dev/victor.stinner%40gmail.com
___
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] Not receiving bug tracker emails

2016-03-29 Thread Serhiy Storchaka

On 30.03.16 03:23, Victor Stinner wrote:

same for me, i'm using using gmail with a @gmail.com email.

Victor

2016-03-30 1:30 GMT+02:00 Martin Panter :

For the last ~36 hours I have stopped receiving emails for messages
posted in the bug tracker. Is anyone else having this problem? Has
anything changed recently?


Same for me.

This is very sad, because some comments can be unnoticed and some 
patches can be unreviewed.



___
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