[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-07-03 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20443 pull_request: https://github.com/python/cpython/pull/21294 ___ Python tracker <https://bugs.python.org/issue1635

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-07-03 Thread Dong-hee Na
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

[issue41191] PyType_FromModuleAndSpec is not mentioned in 3.9 What's new

2020-07-04 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +petr.viktorin, vstinner ___ Python tracker <https://bugs.python.org/issue41191> ___ ___ Python-bugs-list mailing list Unsub

[issue37207] Use PEP 590 vectorcall to speed up calls to range(), list() and dict()

2020-07-05 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20485 pull_request: https://github.com/python/cpython/pull/21337 ___ Python tracker <https://bugs.python.org/issue37

[issue37207] Use PEP 590 vectorcall to speed up calls to range(), list() and dict()

2020-07-06 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20496 pull_request: https://github.com/python/cpython/pull/21350 ___ Python tracker <https://bugs.python.org/issue37

[issue37207] Use PEP 590 vectorcall to speed up calls to range(), list() and dict()

2020-07-06 Thread Dong-hee Na
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

[issue41271] Add support for io_uring to cpython

2020-07-15 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41271> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38169] Increase Code Coverage for SharedMemory and ShareableListe

2020-07-19 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue38169] Increase Code Coverage for SharedMemory and ShareableListe

2020-07-19 Thread Dong-hee Na
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

[issue41343] Convert complex methods to Argument Clinic

2020-07-19 Thread Dong-hee Na
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

[issue41343] Convert complex methods to Argument Clinic

2020-07-19 Thread Dong-hee Na
Change by Dong-hee Na : -- assignee: -> corona10 ___ Python tracker <https://bugs.python.org/issue41343> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue41343] Convert complex methods to Argument Clinic

2020-07-19 Thread Dong-hee Na
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

[issue41343] Convert complex methods to Argument Clinic

2020-07-19 Thread Dong-hee Na
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

[issue41343] Convert complex methods to Argument Clinic

2020-07-19 Thread Dong-hee Na
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

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
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

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
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

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
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

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
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

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41361] Converting collections.deque methods to Argument Clinic

2020-07-21 Thread Dong-hee Na
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

[issue41361] Converting collections.deque methods to Argument Clinic

2020-07-21 Thread Dong-hee Na
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

[issue41361] Converting collections.deque methods to Argument Clinic

2020-07-21 Thread Dong-hee Na
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

[issue40841] Provide mimetypes.sniff API as stdlib

2020-07-27 Thread Dong-hee Na
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

[issue41395] pickle and pickletools cli interface doesn't close input and output file.

2020-07-28 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41395> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40841] Provide mimetypes.sniff API as stdlib

2020-07-28 Thread Dong-hee Na
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

[issue40841] Provide mimetypes.sniff API as stdlib

2020-07-30 Thread Dong-hee Na
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

[issue41330] Inefficient error-handle for CJK encodings

2020-07-30 Thread Dong-hee Na
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

[issue41440] os.cpu_count doesn't work on VxWorks RTOS

2020-08-06 Thread Dong-hee Na
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:

[issue41440] os.cpu_count doesn't work on VxWorks RTOS

2020-08-06 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41625] Add splice() to the os module

2020-08-24 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41625> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40912] _PyOS_SigintEvent is never closed on Windows

2020-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue40912> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40077] Convert static types to PyType_FromSpec()

2020-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21062 pull_request: https://github.com/python/cpython/pull/21953 ___ Python tracker <https://bugs.python.org/issue40

[issue40077] Convert static types to PyType_FromSpec()

2020-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21063 pull_request: https://github.com/python/cpython/pull/21954 ___ Python tracker <https://bugs.python.org/issue40

[issue32313] Wrong inspect.getsource for datetime

2020-08-26 Thread Dong-hee Na
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

[issue40077] Convert static types to PyType_FromSpec()

2020-08-26 Thread Dong-hee Na
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

[issue33660] pathlib.Path.resolve() returns path with double slash when resolving a relative path in root directory

2020-08-26 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks Ɓukasz for finanlizing this work :) -- ___ Python tracker <https://bugs.python.org/issue33660> ___ ___ Python-bugs-list m

[issue41524] PyOS_mystricmp advances pointers too far

2020-08-26 Thread Dong-hee Na
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:

[issue41654] Segfault when raising MemoryError

2020-08-29 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41654> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41524] PyOS_mystricmp advances pointers too far

2020-08-29 Thread Dong-hee Na
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

[issue41524] PyOS_mystricmp advances pointers too far

2020-08-30 Thread Dong-hee Na
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

[issue41524] PyOS_mystricmp advances pointers too far

2020-08-30 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks William -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41627] Relocate user site packages on Windows 32-bit

2020-08-31 Thread Dong-hee Na
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

[issue14611] inspect.getargs fails on some anonymous tuples

2020-08-31 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41692] Deprecate immortal interned strings: PyUnicode_InternImmortal()

2020-09-03 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41692> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41692] Deprecate immortal interned strings: PyUnicode_InternImmortal()

2020-09-03 Thread Dong-hee Na
Dong-hee Na added the comment: +1 -- ___ Python tracker <https://bugs.python.org/issue41692> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41672] imaplib: wrong return type documented

2020-09-03 Thread Dong-hee Na
Dong-hee Na added the comment: @eric What do you think about? -- nosy: +corona10, eric.smith ___ Python tracker <https://bugs.python.org/issue41672> ___ ___

[issue41700] test_c_locale_coercion: test_PYTHONCOERCECLOCALE_set_to_one() failed on PPC64 Fedora 3.9

2020-09-03 Thread Dong-hee Na
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

[issue41700] test_c_locale_coercion: test_PYTHONCOERCECLOCALE_set_to_one() failed on PPC64 Fedora 3.9

2020-09-04 Thread Dong-hee Na
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

[issue41700] test_c_locale_coercion: test_PYTHONCOERCECLOCALE_set_to_one() failed on PPC64 Fedora 3.9

2020-09-04 Thread Dong-hee Na
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

[issue41700] test_c_locale_coercion: test_PYTHONCOERCECLOCALE_set_to_one() failed on PPC64 Fedora 3.9

2020-09-04 Thread Dong-hee Na
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

[issue41700] test_c_locale_coercion: test_PYTHONCOERCECLOCALE_set_to_one() failed on PPC64 Fedora 3.9

2020-09-04 Thread Dong-hee Na
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

[issue41700] test_c_locale_coercion: test_PYTHONCOERCECLOCALE_set_to_one() failed on PPC64 Fedora 3.9

2020-09-04 Thread Dong-hee Na
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

[issue41672] imaplib: wrong return type documented

2020-09-05 Thread Dong-hee Na
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

[issue41732] Custom iterator to memoryview - performance improvement

2020-09-08 Thread Dong-hee Na
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:

[issue41732] Custom iterator to memoryview - performance improvement

2020-09-08 Thread Dong-hee Na
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

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-09-08 Thread Dong-hee Na
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

[issue41749] Little improve on imghdr library

2020-09-09 Thread Dong-hee Na
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

[issue41571] Implement thread-related commands in pdb

2020-09-09 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41571> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41571] Implement thread-related commands in pdb

2020-09-09 Thread Dong-hee Na
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

[issue40288] [subinterpreters] atexit module should not be loaded more than once per interpreter

2020-09-09 Thread Dong-hee Na
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

[issue41672] imaplib: wrong return type documented

2020-09-09 Thread Dong-hee Na
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

[issue40600] Add option to disallow > 1 instance of an extension module

2020-09-10 Thread Dong-hee Na
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

[issue41052] Opt out serialization/deserialization for heap type

2020-09-10 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21250 pull_request: https://github.com/python/cpython/pull/22189 ___ Python tracker <https://bugs.python.org/issue41

[issue35293] make doctest (Sphinx) emits a lot of warnings

2020-09-11 Thread Dong-hee Na
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

[issue41762] Documentation job fails on CIs: duplicate token description of format_spec

2020-09-11 Thread Dong-hee Na
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

[issue41672] imaplib: wrong return type documented

2020-09-12 Thread Dong-hee Na
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

[issue41672] imaplib: wrong return type documented

2020-09-12 Thread Dong-hee Na
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

[issue41672] imaplib: wrong return type documented

2020-09-12 Thread Dong-hee Na
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

[issue41672] imaplib: wrong return type documented

2020-09-12 Thread Dong-hee Na
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

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2020-09-16 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41798> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35293] make doctest (Sphinx) emits a lot of warnings

2020-09-18 Thread Dong-hee Na
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

[issue35293] make doctest (Sphinx) emits a lot of warnings

2020-09-18 Thread Dong-hee Na
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

[issue35293] make doctest (Sphinx) emits a lot of warnings

2020-09-18 Thread Dong-hee Na
Change by Dong-hee Na : -- assignee: -> corona10 ___ Python tracker <https://bugs.python.org/issue35293> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue35293] make doctest (Sphinx) emits a lot of warnings

2020-09-18 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21353 pull_request: https://github.com/python/cpython/pull/22305 ___ Python tracker <https://bugs.python.org/issue35

[issue40915] multiple problems with mmap.resize() in Windows

2020-09-18 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue40915> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41823] Add more fields to sys.float_info

2020-09-21 Thread Dong-hee Na
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

[issue40213] contextlib.aclosing()

2020-09-21 Thread Dong-hee Na
Dong-hee Na added the comment: see https://bugs.python.org/issue41229 -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue40213> ___ ___ Pytho

[issue41832] PyType_FromSpec() should accept tp_doc=NULL

2020-09-23 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41832> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41739] test_logging: threading_cleanup() failed to cleanup 1 threads (count: 1, dangling: 2)

2020-09-24 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41739> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41797] PyModule_GetState doesn't work with LazyLoader

2020-09-25 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41797> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-09-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21451 pull_request: https://github.com/python/cpython/pull/22415 ___ Python tracker <https://bugs.python.org/issue1635

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-09-26 Thread Dong-hee Na
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

[issue41864] Compiler error in _zoneinfo.c:1227: error: #pragma GCC diagnostic not allowed inside functions

2020-09-26 Thread Dong-hee Na
Dong-hee Na added the comment: see also: https://bugs.python.org/issue40686 -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41864> ___ ___

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-27 Thread Dong-hee Na
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

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-27 Thread Dong-hee Na
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

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-27 Thread Dong-hee Na
Change by Dong-hee Na : -- components: +Interpreter Core ___ Python tracker <https://bugs.python.org/issue41870> ___ ___ Python-bugs-list mailing list Unsub

[issue41875] __builtin_unreachable error in gcc 4.4.5

2020-09-28 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue41875> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41875] __builtin_unreachable error in gcc 4.4.5

2020-09-28 Thread Dong-hee Na
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

[issue41875] __builtin_unreachable error in gcc 4.4.5

2020-09-28 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +serhiy.storchaka, vstinner ___ Python tracker <https://bugs.python.org/issue41875> ___ ___ Python-bugs-list mailing list Unsub

[issue41875] __builtin_unreachable error in gcc 4.4.5

2020-09-28 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issue41875> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41875] __builtin_unreachable error in gcc 4.4.5

2020-09-28 Thread Dong-hee Na
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

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-28 Thread Dong-hee Na
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

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-28 Thread Dong-hee Na
Dong-hee Na added the comment: Now I close this issue. Thank you, Mark! -- nosy: +Mark.Shannon ___ Python tracker <https://bugs.python.org/issue41870> ___ ___

[issue41875] __builtin_unreachable error in gcc 4.4.5

2020-09-28 Thread Dong-hee Na
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

[issue41873] Add vectorcall for float()

2020-09-28 Thread Dong-hee Na
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:

[issue41873] Add vectorcall for float()

2020-09-28 Thread Dong-hee Na
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

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-29 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21486 pull_request: https://github.com/python/cpython/pull/22460 ___ Python tracker <https://bugs.python.org/issue41

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-30 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +21488 pull_request: https://github.com/python/cpython/pull/22462 ___ Python tracker <https://bugs.python.org/issue41

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-30 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -21486 ___ Python tracker <https://bugs.python.org/issue41870> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41870] Use PEP 590 vectorcall to speed up calls to bool()

2020-09-30 Thread Dong-hee Na
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

<    8   9   10   11   12   13   14   15   16   >