Change by Dong-hee Na :
--
pull_requests: +20443
pull_request: https://github.com/python/cpython/pull/21294
___
Python tracker
<https://bugs.python.org/issue1635
Dong-hee Na added the comment:
New changeset c0b214bc08f0da89e5b2e4b8cc9f07783833d6b8 by Dong-hee Na in branch
'master':
bpo-1635741: Port faulthandler module to multiphase initialization (GH-21294)
https://github.com/python/cpython/commit/c0b214bc08f0da89e5b2e4b8cc9f07
Change by Dong-hee Na :
--
nosy: +petr.viktorin, vstinner
___
Python tracker
<https://bugs.python.org/issue41191>
___
___
Python-bugs-list mailing list
Unsub
Change by Dong-hee Na :
--
pull_requests: +20485
pull_request: https://github.com/python/cpython/pull/21337
___
Python tracker
<https://bugs.python.org/issue37
Change by Dong-hee Na :
--
pull_requests: +20496
pull_request: https://github.com/python/cpython/pull/21350
___
Python tracker
<https://bugs.python.org/issue37
Dong-hee Na added the comment:
New changeset 97558d6b08a656eae209d49b206f703cee0359a2 by Dong-hee Na in branch
'3.9':
[3.9] bpo-37207: Update whatsnews for 3.9 (GH-21337)
https://github.com/python/cpython/commit/97558d6b08a656eae209d49b206f70
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41271>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Dong-hee Na added the comment:
New changeset bfd0fbdc1352534b3c91b46dbae4285f5220acf4 by Vinay Sharma in
branch 'master':
bpo-38169: Increase code coverage for SharedMemory and ShareableList (GH-16139)
https://github.com/python/cpython/commit/bfd0fbdc1352534b3c91b46dbae428
New submission from Dong-hee Na :
Mean +- std dev: [master_format] 3.54 us +- 0.06 us -> [clinic_format] 3.29 us
+- 0.07 us: 1.08x faster (-7%)
Mean +- std dev: [master_conjugate] 3.56 us +- 0.09 us -> [clinic_conjugate]
3.32 us +- 0.06 us: 1.07x faster (-7%)
Mean +- s
Change by Dong-hee Na :
--
assignee: -> corona10
___
Python tracker
<https://bugs.python.org/issue41343>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by Dong-hee Na :
--
keywords: +patch
pull_requests: +20692
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/21550
___
Python tracker
<https://bugs.python.org/issu
Dong-hee Na added the comment:
> But I am surprised that you get a difference for conjugate() and
> __getnewargs__.
It could be a noise :)
--
___
Python tracker
<https://bugs.python.org/i
Dong-hee Na added the comment:
Hmm, I re-ran all the benchmark.
- conjugate => It looks like noise.
- __getnewargs__ -> consistently showing performance improvement. (2-3%)
FYI, I ran benchmarks on the macOS.
--
___
Python tracker
Dong-hee Na added the comment:
Benchmark file
--
Added file: https://bugs.python.org/file49328/bench_deque_count.py
___
Python tracker
<https://bugs.python.org/issue41
New submission from Dong-hee Na :
Same situation as: https://bugs.python.org/issue39425
Mean +- std dev: [master_count] 946 ns +- 14 ns -> [ac_count] 427 ns +- 7 ns:
2.22x faster (-55%)
--
assignee: corona10
components: Extension Modules
messages: 374010
nosy: corona10
prior
Change by Dong-hee Na :
--
keywords: +patch
pull_requests: +20710
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/21566
___
Python tracker
<https://bugs.python.org/issu
Dong-hee Na added the comment:
> I would rather not do this.
I would not like to say this change should be applied ;)
I found this point during I converting deque methods by using
Argument Clinic(I will ping you later ;)
https://bugs.python.org/issue39425 was applied si
Change by Dong-hee Na :
--
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
New submission from Dong-hee Na :
There was no performance regressin with this change.
--
components: Argument Clinic
messages: 374068
nosy: corona10, larry
priority: normal
severity: normal
status: open
title: Converting collections.deque methods to Argument Clinic
type: enhancement
Change by Dong-hee Na :
--
keywords: +patch
pull_requests: +20725
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/21584
___
Python tracker
<https://bugs.python.org/issu
Dong-hee Na added the comment:
> collections.deque was intentionally not converted to Argument Clinic,
Oh, I see ..
--
___
Python tracker
<https://bugs.python.org/issu
Dong-hee Na added the comment:
> This looks like a useful addition. I hope someone will take up the review!
Thank you guido!
I also think that this API is good to be added to the standard library and it
would be very useful!
I hope that someone would like to interest in this is
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41395>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
> I think that both functions for detecting file type, by name and by content
I think so too, mime sniffing would not be a way to alternate the method based
on the file extension. Both APIs should be provided.
> should not we add also the code for det
Dong-hee Na added the comment:
https://www.garykessler.net/library/file_sigs.html looks like a good resource
for this kind of API.
However, I would like to choose well-known standard from whatwg or w3c etc..
--
___
Python tracker
<ht
Dong-hee Na added the comment:
I am also +1 on Serhiy's opinion.
As I am Korean, (I don't know Japan or China environment)
I know that there still exist old Korean websites that use EUC-KR encoding.
But at least 2010s modern Korea website/application.
Most of the applications are bu
Dong-hee Na added the comment:
New changeset 3405e0542839cde94df9833b3809710a67a33c7c by pxinwr in branch
'master':
bpo-41440: add os.cpu_count() support for VxWorks RTOS (GH-21685)
https://github.com/python/cpython/commit/3405e0542839cde94df9833b3809710a67a33c7c
--
nosy:
Change by Dong-hee Na :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41625>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue40912>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
pull_requests: +21062
pull_request: https://github.com/python/cpython/pull/21953
___
Python tracker
<https://bugs.python.org/issue40
Change by Dong-hee Na :
--
pull_requests: +21063
pull_request: https://github.com/python/cpython/pull/21954
___
Python tracker
<https://bugs.python.org/issue40
Dong-hee Na added the comment:
_datetime.datetime's tp_name is datetime.datetime so
inspect module guess that _datetime.datetime's module name is datetime, not
_datetime.
I don't think we have to fix this issue from inspect module side.
If the _datetime.datetime's t
Dong-hee Na added the comment:
New changeset 31967fd8d0220af84e2698172d1378bffc8cd851 by Dong-hee Na in branch
'master':
bpo-40077: Convert _operator to use PyType_FromSpec (GH-21954)
https://github.com/python/cpython/commit/31967fd8d0220af84e2698172d1378
Dong-hee Na added the comment:
Thanks Ćukasz for finanlizing this work :)
--
___
Python tracker
<https://bugs.python.org/issue33660>
___
___
Python-bugs-list m
Dong-hee Na added the comment:
New changeset 97eaf2b5e5c826b9abe59896a363853bef55c5d9 by wmeehan in branch
'master':
bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845)
https://github.com/python/cpython/commit/97eaf2b5e5c826b9abe59896a363853bef55c5d9
--
nosy:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41654>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
New changeset 901c2eae6e27ee7793e5a3c638664e01a3bf8de8 by Miss Islington (bot)
in branch '3.9':
bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-21978)
https://github.com/python/cpython/commit/901c2eae6e27ee7793e5a3c638664e
Dong-hee Na added the comment:
New changeset 85ca9c049c5a490d143d28933bbb02ab80394ed8 by Miss Islington (bot)
in branch '3.8':
bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-22016)
https://github.com/python/cpython/commit/85ca9c049c5a490d143d28933bbb02
Dong-hee Na added the comment:
Thanks William
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Dong-hee Na added the comment:
> We should switch the pattern to Python{sys.winver}, which is XY or XY-32, the
> same as elsewhere.
+1
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/i
Change by Dong-hee Na :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41692>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
+1
--
___
Python tracker
<https://bugs.python.org/issue41692>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
@eric
What do you think about?
--
nosy: +corona10, eric.smith
___
Python tracker
<https://bugs.python.org/issue41672>
___
___
Change by Dong-hee Na :
--
keywords: +patch
nosy: +corona10
nosy_count: 2.0 -> 3.0
pull_requests: +21167
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/22081
___
Python tracker
<https://bugs.python.org/i
Dong-hee Na added the comment:
New changeset 54a66ade2067c373d31003ad260e1b7d14c81564 by Dong-hee Na in branch
'master':
bpo-41700: Skip test if the locale is not supported (GH-22081)
https://github.com/python/cpython/commit/54a66ade2067c373d31003ad260e1b
Dong-hee Na added the comment:
New changeset 8f13ff959ae43fb6b8217845b2945779fe693b84 by Miss Islington (bot)
in branch '3.9':
bpo-41700: Skip test if the locale is not supported (GH-22081) (GH-22085)
https://github.com/python/cpython/commit/8f13ff959ae43fb6b8217845b29457
Dong-hee Na added the comment:
New changeset 4bcff52447b472bc5c8698d4ab29c09df9e122b4 by Miss Islington (bot)
in branch '3.8':
bpo-41700: Skip test if the locale is not supported (GH-22081) (GH-22086)
https://github.com/python/cpython/commit/4bcff52447b472bc5c8698d4ab29c0
Change by Dong-hee Na :
--
versions: +Python 3.10, Python 3.8
___
Python tracker
<https://bugs.python.org/issue41700>
___
___
Python-bugs-list mailing list
Unsub
Dong-hee Na added the comment:
This issue is fixed.
Thanks for the report and review Victor!
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Dong-hee Na added the comment:
@norbertcyran
Do you want to sand a patch that it update string to byte for this
documentation?
--
keywords: +newcomer friendly
___
Python tracker
<https://bugs.python.org/issue41
Dong-hee Na added the comment:
New changeset b0ac5d75a59c356c44cfc9b25077da3049dd16e9 by dxflores in branch
'master':
bpo-41732: add iterator to memoryview (GH-22119)
https://github.com/python/cpython/commit/b0ac5d75a59c356c44cfc9b25077da3049dd16e9
--
nosy:
Dong-hee Na added the comment:
Thanks, Diogo for working on this issue.
And thank you for the mentoring guido!
--
nosy: +gvanrossum
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracke
Dong-hee Na added the comment:
New changeset 3ff6975e2c0af0399467f234b2e307cc76efcfa9 by Mohamed Koubaa in
branch 'master':
bpo-1635741: port scproxy to multi-phase init (GH-22164)
https://github.com/python/cpython/commit/3ff6975e2c0af0399467f234b2e307
Dong-hee Na added the comment:
IMHO, those use cases are already intended.
We can read such use case on test code but also documentation.
It will break legacy usage. I am -1 on change the API signature.
We should think deeply before changing this.
--
nosy: +corona10
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41571>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
I am +1 on this project :)
--
___
Python tracker
<https://bugs.python.org/issue41571>
___
___
Python-bugs-list mailing list
Unsub
Dong-hee Na added the comment:
@vstineer
I'd like to update PR 19562 not to create more than one instance.
if the PR is updated, would you like to review this PR?
--
___
Python tracker
<https://bugs.python.org/is
Dong-hee Na added the comment:
Please ping me when you submit the PR
--
___
Python tracker
<https://bugs.python.org/issue41672>
___
___
Python-bugs-list mailin
Dong-hee Na added the comment:
One of my opinions is that
Since module object supports detecting error during Py_mod_exec,
The only thing we have to do is return -1 when the module has already existed.
we should define new exception type and don't have to define new slots.
The pros of
Change by Dong-hee Na :
--
pull_requests: +21250
pull_request: https://github.com/python/cpython/pull/22189
___
Python tracker
<https://bugs.python.org/issue41
Change by Dong-hee Na :
--
keywords: +patch
pull_requests: +21257
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/22198
___
Python tracker
<https://bugs.python.org/issu
Dong-hee Na added the comment:
>>> sphinx.__version__
'3.2.1
I can reproduce this issue consistantly on my local machine with this
environment.
--
nosy: +corona10
___
Python tracker
<https://bugs.pyth
Dong-hee Na added the comment:
New changeset c75330605d4795850ec74fdc4d69aa5d92f76c00 by Norbert Cyran in
branch 'master':
bpo-41672: Fix type mismatches in imaplib docs (GH-22207)
https://github.com/python/cpython/commit/c75330605d4795850ec74fdc4d69aa
Change by Dong-hee Na :
--
versions: -Python 3.5, Python 3.6, Python 3.7
___
Python tracker
<https://bugs.python.org/issue41672>
___
___
Python-bugs-list mailin
Dong-hee Na added the comment:
New changeset 3a150c77c31da240f1b92cab9ec74f1fa701b869 by Miss Islington (bot)
in branch '3.8':
bpo-41672: Fix type mismatches in imaplib docs (GH-22207) (#22218)
https://github.com/python/cpython/commit/3a150c77c31da240f1b92cab9ec74f
Dong-hee Na added the comment:
Thanks Norbert for the contribution!
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41798>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
New changeset 6595cb0af4c51c0381c233b97884fe916a4ddd35 by Dong-hee Na in branch
'master':
bpo-35293: Remove RemovedInSphinx40Warning (GH-22198)
https://github.com/python/cpython/commit/6595cb0af4c51c0381c233b97884fe
Dong-hee Na added the comment:
/home/travis/virtualenv/python3.6.10/lib/python3.6/site-packages/sphinx/util/nodes.py:151:
FutureWarning:
The iterable returned by Node.traverse()
https://travis-ci.com/github/python/cpython/jobs/386971271
The issue is still left, I am going to
Change by Dong-hee Na :
--
assignee: -> corona10
___
Python tracker
<https://bugs.python.org/issue35293>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by Dong-hee Na :
--
pull_requests: +21353
pull_request: https://github.com/python/cpython/pull/22305
___
Python tracker
<https://bugs.python.org/issue35
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue40915>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
@rhettinger
I like the idea to add more informative information,
However, since the type is the structsequence the change can cause the
ValueError: too many values to unpack when the variable is used as a tuple.
But the if such use case is not often used, it
Dong-hee Na added the comment:
see https://bugs.python.org/issue41229
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue40213>
___
___
Pytho
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41832>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41739>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41797>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
pull_requests: +21451
pull_request: https://github.com/python/cpython/pull/22415
___
Python tracker
<https://bugs.python.org/issue1635
Dong-hee Na added the comment:
New changeset 2afd1751dd9a35d4ec03b708e3e5cddd72c43f7e by Dong-hee Na in branch
'master':
bpo-1635741: Port _bisect module to multi-phase init (GH-22415)
https://github.com/python/cpython/commit/2afd1751dd9a35d4ec03b708e3e5cd
Dong-hee Na added the comment:
see also: https://bugs.python.org/issue40686
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41864>
___
___
New submission from Dong-hee Na :
bool type is well-used builtin types, I noticed that if we use vector call to
bool type, it shows the awesome performance enhancement.
Mean +- std dev: [master] 91.4 us +- 3.3 us -> [vectorcall] 48.6 us +- 3.1 us:
1.88x faster (-47%)
--
assig
Change by Dong-hee Na :
--
keywords: +patch
pull_requests: +21461
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/22427
___
Python tracker
<https://bugs.python.org/issu
Change by Dong-hee Na :
--
components: +Interpreter Core
___
Python tracker
<https://bugs.python.org/issue41870>
___
___
Python-bugs-list mailing list
Unsub
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue41875>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
keywords: +patch
pull_requests: +21464
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/22433
___
Python tracker
<https://bugs.python.org/issu
Change by Dong-hee Na :
--
nosy: +serhiy.storchaka, vstinner
___
Python tracker
<https://bugs.python.org/issue41875>
___
___
Python-bugs-list mailing list
Unsub
Change by Dong-hee Na :
--
versions: +Python 3.10
___
Python tracker
<https://bugs.python.org/issue41875>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
I am able to reproduce this issue on my gcc 4.4.7
root@ef9b356a9deb:/home/cpython# gcc --version
gcc (Ubuntu/Linaro 4.4.7-8ubuntu7) 4.4.7
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
Dong-hee Na added the comment:
New changeset a195bceff7b552c5f86dec7894ff24dcc87235da by Dong-hee Na in branch
'master':
bpo-41870: Use PEP 590 vectorcall to speed up bool() (GH-22427)
https://github.com/python/cpython/commit/a195bceff7b552c5f86dec7894ff24
Dong-hee Na added the comment:
Now I close this issue.
Thank you, Mark!
--
nosy: +Mark.Shannon
___
Python tracker
<https://bugs.python.org/issue41870>
___
___
Dong-hee Na added the comment:
New changeset 24ba3b0df5e5f2f237d7b23b4017ba12f16320ae by Dong-hee Na in branch
'master':
bpo-41875: Use __builtin_unreachable when possible (GH-22433)
https://github.com/python/cpython/commit/24ba3b0df5e5f2f237d7b23b4017ba
Dong-hee Na added the comment:
New changeset e8acc355d430b45f1c3ff83312e72272262a854f by Dennis Sweeney in
branch 'master':
bpo-41873: Add vectorcall for float() (GH-22432)
https://github.com/python/cpython/commit/e8acc355d430b45f1c3ff83312e72272262a854f
--
nosy:
Dong-hee Na added the comment:
Now float() is faster!
Thank you for your contribution, Dennis :)
And thank you Victor as co-reviewer!
--
nosy: +vstinner
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Pytho
Change by Dong-hee Na :
--
pull_requests: +21486
pull_request: https://github.com/python/cpython/pull/22460
___
Python tracker
<https://bugs.python.org/issue41
Change by Dong-hee Na :
--
pull_requests: +21488
pull_request: https://github.com/python/cpython/pull/22462
___
Python tracker
<https://bugs.python.org/issue41
Change by Dong-hee Na :
--
pull_requests: -21486
___
Python tracker
<https://bugs.python.org/issue41870>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
New changeset fa7ce080175f65d678a7d5756c94f82887fc9803 by Dong-hee Na in branch
'master':
bpo-41870: Avoid the test when nargs=0 (GH-22462)
https://github.com/python/cpython/commit/fa7ce080175f65d678a7d5756c94f8
1201 - 1300 of 1592 matches
Mail list logo