Re: [Python-Dev] bedevere pipelines hang on github

2019-04-07 Thread Karthikeyan
This seems to be fixed now :
https://github.com/python/core-workflow/issues/321

Regards,
Karthikeyan S
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] bedevere pipelines hang on github

2019-04-07 Thread Lysandros Nikolaou
There is an issue with bedevere at the moment. As described by Mariatta in
https://github.com/python/bedevere/issues/162 it is still not clear, if
this is our issue or GitHub's. I may have some time to look into it a bit
later.

On Sun, Apr 7, 2019 at 1:32 PM Xavier de Gaye  wrote:

> bedevere/issue-number and bedevere/news are not triggered for some
> reason at https://github.com/python/cpython/pull/12708 and hang
> forever with "Expected — Waiting for status to be reported ".
>
> Xavier
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/lisandrosnik%40gmail.com
>
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] bedevere pipelines hang on github

2019-04-07 Thread Xavier de Gaye
bedevere/issue-number and bedevere/news are not triggered for some
reason at https://github.com/python/cpython/pull/12708 and hang
forever with "Expected — Waiting for status to be reported ".

Xavier
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Deprecating "instance method" class

2019-04-07 Thread Jeroen Demeyer

On 2019-04-07 09:48, Serhiy Storchaka wrote:

total_ordering monkeypatches the decorated class. I'm planning to
implement in C methods that implement __gt__ in terms of __lt__ etc.


Yes, I understood that. I'm just saying: if you want to make it fast, 
that's not the best solution. The fastest would be to implement 
tp_richcompare from scratch (instead of relying on slot_tp_richcompare 
dispatching to methods).

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


Re: [Python-Dev] Deprecating "instance method" class

2019-04-07 Thread Serhiy Storchaka

05.04.19 20:56, Jeroen Demeyer пише:

On 2019-04-05 19:53, Serhiy Storchaka wrote:

At Python level we can monkeypatch __gt__, but not tp_richcompare.


Sure, but you're planning to use C anyway so that's not really an argument.


total_ordering monkeypatches the decorated class. I'm planning to 
implement in C methods that implement __gt__ in terms of __lt__ etc.


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