[issue47091] Improve performance of list and tuple repeat methods

2022-03-22 Thread Pieter Eendebak
Pieter Eendebak added the comment: The special case of a repeat with n=1 does not use memcpy. An implementation with it showed no performance improvement. -- ___ Python tracker _

[issue47091] Improve performance of list and tuple repeat methods

2022-03-22 Thread Pieter Eendebak
Change by Pieter Eendebak : -- keywords: +patch pull_requests: +30135 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32045 ___ Python tracker ___

[issue47091] Improve performance of list and tuple repeat methods

2022-03-22 Thread Pieter Eendebak
New submission from Pieter Eendebak : Approach is similar to https://github.com/python/cpython/pull/31856 and https://github.com/python/cpython/pull/31999 -- components: Interpreter Core messages: 415762 nosy: pieter.eendebak priority: normal severity: normal status: open title: Improv