[Python-Dev] Re: obmalloc (was Have a big machine and spare time? Here's a possible Python bug.)

2019-06-07 Thread Tim Peters
To be clearer, while knowing the size of allocated objects may be of some use to some other allocators, "not really" for obmalloc. That one does small objects by itself in a uniform way, and punts everything else to the system malloc family. The _only_ thing it wants to know on a free/realloc is

[Python-Dev] Re: python-ideas and python-dev migrated to Mailman 3/HyperKitty

2019-06-07 Thread Ned Deily
On Jun 7, 2019, at 18:03, Victor Stinner wrote: > I am not sure that we are good at archiving. I'm not sure what this has to do with mailing list URLs but ... > Example with Subversion links in the bug tracker: > > https://bugs.python.org/issue2001#msg123254 > > "Added the missing CSS file in

[Python-Dev] Re: python-ideas and python-dev migrated to Mailman 3/HyperKitty

2019-06-07 Thread Victor Stinner
I am not sure that we are good at archiving. Example with Subversion links in the bug tracker: https://bugs.python.org/issue2001#msg123254 "Added the missing CSS file in r86971." The revision link is: https://hg.python.org/lookup/r86971 Which redirects to the following HTTP 404 (not found) erro

[Python-Dev] Re: python-ideas and python-dev migrated to Mailman 3/HyperKitty

2019-06-07 Thread Gregory P. Smith
On Thu, Jun 6, 2019 at 6:19 AM Victor Stinner wrote: > Le jeu. 6 juin 2019 à 14:18, Steven D'Aprano a > écrit : > > i.e. 25-40% longer. Is there a shorter permalink form available, like > > goo.gl, bitly, youtu.be etc use? That would be awesome if we could use > > them instead. > > I really disl

[Python-Dev] Re: python-ideas and python-dev migrated to Mailman 3/HyperKitty

2019-06-07 Thread Abhilash Raj
Wes Turner wrote: > Thanks for getting these upgraded. IMHO, being able to copy URLs from list > message footers as references in e.g. issues will be a great boost in > productivity. This is possible to do using "$hyperkitty_url" in the message footer. You can request the list owners to add that.

[Python-Dev] Re: Using vectorcall for tp_new and tp_init

2019-06-07 Thread Terry Reedy
On 6/7/2019 6:41 AM, Jeroen Demeyer wrote: Hello, I'm starting this thread to brainstorm for using vectorcall to speed up creating instances of Python classes. Currently the following happens when creating an instance of a Python class X using X(.) and assuming that __new__ and __init__

[Python-Dev] Summary of Python tracker Issues

2019-06-07 Thread Python tracker
ACTIVITY SUMMARY (2019-05-31 - 2019-06-07) Python tracker at https://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open7007 (-21) closed 41943 (+104) total 48950 (+83) Open issues w

[Python-Dev] Re: python-ideas and python-dev migrated to Mailman 3/HyperKitty

2019-06-07 Thread Barry Warsaw
On Jun 6, 2019, at 23:50, Wes Turner wrote: > > Thanks for getting these upgraded. IMHO, being able to copy URLs from list > message footers as references in e.g. issues will be a great boost in > productivity. Just FYI, these URLs are a “standard" we proposed many years ago, with discussions

[Python-Dev] Using vectorcall for tp_new and tp_init

2019-06-07 Thread Jeroen Demeyer
Hello, I'm starting this thread to brainstorm for using vectorcall to speed up creating instances of Python classes. Currently the following happens when creating an instance of a Python class X using X(.) and assuming that __new__ and __init__ are Python functions and that the metaclass