[issue41445] Adding configure temporary files to gitignore

2020-08-01 Thread fj92f3jj923f923
fj92f3jj923f923 added the comment: Closing it as not important :) -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41445] Adding configure temporary files to gitignore

2020-07-30 Thread fj92f3jj923f923
Change by fj92f3jj923f923 : -- keywords: +patch pull_requests: +20833 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21691 ___ Python tracker <https://bugs.python.org/issu

[issue41445] Adding configure temporary files to gitignore

2020-07-30 Thread fj92f3jj923f923
New submission from fj92f3jj923f923 : I noticed that a lot of files generated and removed due configuring. I was too scary, when I saw them, and decided to add them to .gitignore. -- components: Build messages: 374619 nosy: fj92f3jj923f923 priority: normal severity: normal status: open

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-26 Thread fj92f3jj923f923
fj92f3jj923f923 added the comment: Created a new PR for removal of strdup (Hope it is correct) https://github.com/python/cpython/pull/21634 Closed old one -- ___ Python tracker <https://bugs.python.org/issue41

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-26 Thread fj92f3jj923f923
Change by fj92f3jj923f923 : -- pull_requests: +20776 pull_request: https://github.com/python/cpython/pull/21634 ___ Python tracker <https://bugs.python.org/issue41

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-26 Thread fj92f3jj923f923
fj92f3jj923f923 added the comment: I can give a try with removing Please, wait Thanks everyone for giving a chance to make a PR :) -- ___ Python tracker <https://bugs.python.org/issue41

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-20 Thread fj92f3jj923f923
fj92f3jj923f923 added the comment: Got it. But the fix is quite easy as I see, and does not require much affort too. -- ___ Python tracker <https://bugs.python.org/issue41

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-19 Thread fj92f3jj923f923
Change by fj92f3jj923f923 : -- keywords: +patch pull_requests: +20686 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21544 ___ Python tracker <https://bugs.python.org/issu

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-19 Thread fj92f3jj923f923
New submission from fj92f3jj923f923 : Hi, all! strdup implementation inside cpython/Python/strdup.c is not the best one. It calls strlen + strcpy, which is the same as calling strlen twice + memcpy. So I replaced it by the call of strlen + memcpy. It is easy to look any implementation in any