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

2020-04-01 Thread Dong-hee Na
Change by Dong-hee Na : Added file: https://bugs.python.org/file49019/bench_dict_kwnames.py ___ Python tracker <https://bugs.python.org/issue37207> ___ ___ Python-bug

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

2020-04-01 Thread Dong-hee Na
Change by Dong-hee Na : Added file: https://bugs.python.org/file49018/bench_dict_empty.py ___ Python tracker <https://bugs.python.org/issue37207> ___ ___ Python-bug

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

2020-04-01 Thread Dong-hee Na
Dong-hee Na added the comment: @vstinner @petr.viktorin Looks like benchmark showing very impressive result. Can I submit the patch? -- ___ Python tracker <https://bugs.python.org/issue37

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

2020-04-01 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18637 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/19280 ___ Python tracker <https://bugs.python.org/issu

[issue40048] _PyEval_EvalFrameDefault() doesn't reset tstate->frame if _PyCode_InitOpcache() fails

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

[issue40149] test_threading leaked [38, 38, 38] references, sum=114

2020-04-01 Thread Dong-hee Na
Dong-hee Na added the comment: FYI, first gc collect 772 secondary gc collect 4 -- ___ Python tracker <https://bugs.python.org/issue40149> ___ ___ Python-bug

[issue40170] [C API] Make PyTypeObject structure an opaque structure in the public C API

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

[issue40149] test_threading leaked [38, 38, 38] references, sum=114

2020-04-03 Thread Dong-hee Na
Dong-hee Na added the comment: gc: collectable gc: collectable gc: collectable gc: collectable is not collected for the first time. -- ___ Python tracker <https://bugs.python.org/issue40

[issue40149] test_threading leaked [38, 38, 38] references, sum=114

2020-04-03 Thread Dong-hee Na
Dong-hee Na added the comment: Running from abc import ABCMeta on the subinterpreter makes same size of leak. -- ___ Python tracker <https://bugs.python.org/issue40

[issue39537] Change line number table format

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

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

2020-04-04 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18728 pull_request: https://github.com/python/cpython/pull/19366 ___ Python tracker <https://bugs.python.org/issue1635

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

2020-04-04 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -18728 ___ Python tracker <https://bugs.python.org/issue1635741> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2020-04-04 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18745 pull_request: https://github.com/python/cpython/pull/19382 ___ Python tracker <https://bugs.python.org/issue1635

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

2020-04-04 Thread Dong-hee Na
Dong-hee Na added the comment: IMHO, we can close this PR. Summary: The PEP 590 vectorcall is applied to list, tuple, dict, set, frozenset and range If someone wants to apply PEP 590 to other cases. Please open a new issue for it! Thank you, Mark, Jeroen, Petr and everyone who works for

[issue39511] [subinterpreters] Per-interpreter singletons (None, True, False, etc.)

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

[issue40217] The garbage collector doesn't take in account that objects of heap allocated types hold a strong reference to their type

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

[issue40149] test_threading leaked [38, 38, 38] references, sum=114

2020-04-07 Thread Dong-hee Na
Dong-hee Na added the comment: Wow Thank you for the summary :) -- ___ Python tracker <https://bugs.python.org/issue40149> ___ ___ Python-bugs-list mailin

[issue23224] bz2/lzma: Compressor/Decompressor objects are only initialized in __init__

2020-04-07 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.9 -Python 2.7, Python 3.6 ___ Python tracker <https://bugs.python.org/issue23224> ___ ___ Python-bugs-list mailin

[issue23224] bz2/lzma: Compressor/Decompressor objects are only initialized in __init__

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

[issue23224] bz2/lzma: Compressor/Decompressor objects are only initialized in __init__

2020-04-07 Thread Dong-hee Na
Dong-hee Na added the comment: The issue is not solved yet. @ZackerySpytz would you like to finalize this issue? -- ___ Python tracker <https://bugs.python.org/issue23

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-04-08 Thread Dong-hee Na
Dong-hee Na added the comment: Victor, I found a way how to deal with it. The submitted file will show how it can be handled. If you remove the try: finally statement. You can see the same stdout which occurred from tarfile But I'd like to listen to your opinion before submitting the

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-04-08 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch Added file: https://bugs.python.org/file49046/bpo-39851.patch ___ Python tracker <https://bugs.python.org/issue39

[issue40077] Convert static types to PyType_FromSpec()

2020-04-09 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset dcb04d9c6dd6f31449ade6765fa4d26a305e7381 by Hai Shi in branch 'master': bpo-40077: Remove redundant cast in json module (GH-19438) https://github.com/python/cpython/commit/dcb04d9c6dd6f31449ade6765fa4d2

[issue40232] PyOS_AfterFork_Child() should use _PyThread_at_fork_reinit()

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

[issue40232] PyOS_AfterFork_Child() should use _PyThread_at_fork_reinit()

2020-04-09 Thread Dong-hee Na
Dong-hee Na added the comment: I am going to take a look at this issue. -- ___ Python tracker <https://bugs.python.org/issue40232> ___ ___ Python-bugs-list m

[issue40232] PyOS_AfterFork_Child() should use _PyThread_at_fork_reinit()

2020-04-09 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +18805 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19450 ___ Python tracker <https://bugs.python.org/issu

[issue40237] Test code coverage (C) job of Travis CI fails on test_distutils which creates _configtest.gcno file

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

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

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

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

2020-04-10 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18815 pull_request: https://github.com/python/cpython/pull/19459 ___ Python tracker <https://bugs.python.org/issue1635

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-11 Thread Dong-hee Na
Dong-hee Na added the comment: I am going to take a look -- ___ Python tracker <https://bugs.python.org/issue40221> ___ ___ Python-bugs-list mailing list Unsub

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-11 Thread Dong-hee Na
Dong-hee Na added the comment: we should find all usages from Lib/multiprocessing/*.py -- ___ Python tracker <https://bugs.python.org/issue40221> ___ ___ Pytho

[issue40255] Fixing Copy on Writes from reference counting

2020-04-11 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue40255> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-11 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +18831 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19477 ___ Python tracker <https://bugs.python.org/issu

[issue37985] WFERR_UNMARSHALLABLE breaks recursion limit

2020-04-12 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue37985> ___ ___ Python-bugs-list mailin

[issue40255] Fixing Copy on Writes from reference counting

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

[issue40208] Remove deprecated symtable.SymbolTable.has_exec

2020-04-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 990ea4200f05fcd8bce3de363f4d7745ae142385 by Batuhan Taşkaya in branch 'master': bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396) https://github.com/python/cpython/commit/990ea4200f05fcd8bce3de363f4d77

[issue40208] Remove deprecated symtable.SymbolTable.has_exec

2020-04-13 Thread Dong-hee Na
Dong-hee Na added the comment: The deletion of this symtable.SymbolTable.has_exec is now landed. I would like to thank Batuhan and all the reviewers who have participated in this issue. It's time for us to say goodbye to symtable.SymbolTable.has_exec. -- resolution: -> fix

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset e1945307d36849f8be8937144cf3dd6ebab6274c by Dong-hee Na in branch 'master': bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19477) https://github.com/python/cpython/commit/e1945307d36849f8be8937144cf3dd

[issue40281] Add pathlib.PurePath.as_uri()

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: +1 to add this :) -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue40281> ___ ___ Python-bugs-list mailin

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18864 pull_request: https://github.com/python/cpython/pull/19511 ___ Python tracker <https://bugs.python.org/issue40

[issue40232] PyOS_AfterFork_Child() should use _PyThread_at_fork_reinit()

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 62f75fe3dd138f72303814d27183aa469eefcca6 by Dong-hee Na in branch 'master': bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450) https://github.com/python/cpython/commit/62f75fe3dd138f72303814d27183aa

[issue40232] PyOS_AfterFork_Child() should use _PyThread_at_fork_reinit()

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: This issue is now solved. Thanks, Victor for the suggestion! :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker <https://

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset a5900ecf9f22e65bef489633692e9ea6941379c5 by Dong-hee Na in branch 'master': bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19511) https://github.com/python/cpython/commit/a5900ecf9f22e65bef489633692e9e

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: Looks like we update all the methods which are related to _after_fork under Lib/multiprocessing. I am now closing this issue. Thanks for the suggestion, Victor :) -- resolution: -> fixed stage: patch review -> resolved status: open -> cl

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

2020-04-15 Thread Dong-hee Na
Dong-hee Na added the comment: I will take a look :) -- ___ Python tracker <https://bugs.python.org/issue40288> ___ ___ Python-bugs-list mailing list Unsub

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

2020-04-16 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +18906 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19562 ___ Python tracker <https://bugs.python.org/issu

[issue40319] dict.update() return the updated dict instead of None

2020-04-18 Thread Dong-hee Na
Dong-hee Na added the comment: Python 3.9.0a5+ (heads/master:c606624af8, Apr 18 2020, 18:42:51) [Clang 11.0.3 (clang-1103.0.32.29)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = {"test": 1} &g

[issue40319] dict.update() return the updated dict instead of None

2020-04-18 Thread Dong-hee Na
Dong-hee Na added the comment: Python 3.8.2+ (heads/3.8:c496e29c2b, Apr 18 2020, 21:42:41) [Clang 11.0.3 (clang-1103.0.32.29)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = {"test": 1

[issue40328] Add tools for generating mappings_XX.h

2020-04-19 Thread Dong-hee Na
New submission from Dong-hee Na : AFAIK, there are no tools for generating mappings_XX.h under Modules/cjkcodecs. It would cause a maintainable issue, fortunately, I got the old source from https://github.com/BackupTheBerlios/cjkpython. And I success to port into Python3 version and

[issue40328] Add tools for generating mappings_XX.h

2020-04-19 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +18938 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19602 ___ Python tracker <https://bugs.python.org/issu

[issue39849] Compiler warninig: warning: variable ‘res’ set but not used [-Wunused-but-set-variable]

2020-04-20 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks hai shi, now the issue is fixed :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39849] Compiler warninig: warning: variable ‘res’ set but not used [-Wunused-but-set-variable]

2020-04-20 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 5dd21f5d1c9b5a9316deca4535932675f04efeee by Hai Shi in branch 'master': bpo-39849: Enable assertions in _testcapimodule.c and _testinternalcapi.c (GH-19623) https://github.com/python/cpython/commit/5dd21f5d1c9b5a9316deca45359326

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

2020-04-20 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +eric.snow ___ Python tracker <https://bugs.python.org/issue40288> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36346] Prepare for removing the legacy Unicode C API

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

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-22 Thread Dong-hee Na
New submission from Dong-hee Na : Since PEP 560 was approved, The following syntax has become available. from queue import Queue v = Queue[int] It's a very shiny feature. Given the direction of programming language, it's probably a very useful feature that users will use very of

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-22 Thread Dong-hee Na
Change by Dong-hee Na : -- assignee: -> corona10 type: -> performance ___ Python tracker <https://bugs.python.org/issue40369> ___ ___ Python-bugs-list

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-23 Thread Dong-hee Na
Dong-hee Na added the comment: > Can you propose a PR, so I can have a look at the implementation? Got it :), I will upload it soon. -- ___ Python tracker <https://bugs.python.org/issu

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-23 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +19000 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19677 ___ Python tracker <https://bugs.python.org/issu

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-23 Thread Dong-hee Na
Dong-hee Na added the comment: > Do you have any realistic example which would benefit from speeding up the > creation of GenericAlias instances? Hmm I did not find loop tightly calling case, but for example, this kinds of usage are very often. def create_q(l: list[int]) -> Queue[in

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-23 Thread Dong-hee Na
Dong-hee Na added the comment: > And how much faster has your example become? For function declaration, 5% enhancement, the function call does not show difference because the GenericAlias is not big portion on call

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

2020-04-23 Thread Dong-hee Na
Dong-hee Na added the comment: Just for the record, https://github.com/python/cpython/pull/19677#discussion_r413894982 guido left an opinion that the caching approach might be more proper. So I 'd like to suggest open a new issue for ca

[issue40369] Use PEP 590 vectorcall to speed up GenericAlias.

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

[issue40375] Add the UNSELECT command to imaplib

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

[issue39482] Write 2to3 fixer for collections.abc imports

2020-04-25 Thread Dong-hee Na
Dong-hee Na added the comment: Since https://bugs.python.org/issue40360 is now discussing lib2to3 deprecating. The feature would not be needed. -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Pytho

[issue40360] Deprecate lib2to3 (and 2to3) for future removal

2020-04-25 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 nosy_count: 5.0 -> 6.0 pull_requests: +19032 pull_request: https://github.com/python/cpython/pull/18245 ___ Python tracker <https://bugs.python.org/issu

[issue40360] Deprecate lib2to3 (and 2to3) for future removal

2020-04-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -19032 ___ Python tracker <https://bugs.python.org/issue40360> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40375] Add the UNSELECT command to imaplib

2020-04-25 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +19034 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/19712 ___ Python tracker <https://bugs.python.org/issu

[issue40375] Add the UNSELECT command to imaplib

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

[issue40375] Add the UNSELECT command to imaplib

2020-04-27 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c5c42815ecb560bbf34db99b0e15fe9b604be889 by Dong-hee Na in branch 'master': bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712) https://github.com/python/cpython/commit/c5c42815ecb560bbf34db99b0e15fe

[issue40375] Add the UNSELECT command to imaplib

2020-04-27 Thread Dong-hee Na
Dong-hee Na added the comment: I am now closing this issue. Thank you Eric and Victor for the review! -- nosy: +vstinner resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bug

[issue39995] test_concurrent_futures: ProcessPoolSpawnExecutorDeadlockTest.test_crash() fails with OSError: [Errno 9] Bad file descriptor

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

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

2020-04-29 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19119 pull_request: https://github.com/python/cpython/pull/19798 ___ Python tracker <https://bugs.python.org/issue1635

[issue40328] Add tools for generating mappings_XX.h

2020-04-29 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 113feb3ec2b08948a381175d33b6ff308d24fceb by Dong-hee Na in branch 'master': bpo-40328: Add tool for generating cjk mapping headers (GH-19602) https://github.com/python/cpython/commit/113feb3ec2b08948a381175d33b6ff

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

2020-04-29 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 84724dd239c30043616487812f6a710b1d70cd4b by Dong-hee Na in branch 'master': bpo-1635741: Port _stat module to multiphase initialization (GH-19798) https://github.com/python/cpython/commit/84724dd239c30043616487812f6a71

[issue32494] interface to gdbm_count

2020-04-30 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 nosy_count: 2.0 -> 3.0 pull_requests: +19134 pull_request: https://github.com/python/cpython/pull/19814 ___ Python tracker <https://bugs.python.org/issu

[issue32494] Use gdbm_count if possible

2020-04-30 Thread Dong-hee Na
Change by Dong-hee Na : -- ___ Python tracker <https://bugs.python.org/issue32494> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/m

[issue39305] Merge nntplib._NNTPBase and nntplib.NNTP

2020-04-30 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19137 pull_request: https://github.com/python/cpython/pull/19817 ___ Python tracker <https://bugs.python.org/issue39

[issue40453] Add PyConfig._isolated_interpreter: isolated subinterpreters

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

[issue40462] [easy] undefined name in Lib/test/mock_socket.py

2020-05-01 Thread Dong-hee Na
Dong-hee Na added the comment: @vstinner IMHO we should create backport patch for 3.8 and 3.7 3.8 and 3.7 has same codes for this. https://github.com/python/cpython/blob/3.8/Lib/test/mock_socket.py#L95 -- nosy: +corona10 ___ Python tracker <ht

[issue40455] GCC 10 compiler warnings

2020-05-01 Thread Dong-hee Na
Dong-hee Na added the comment: @mark.dickinson @vstinner I'd like to suggest this change. There was no performance impact on my local machine. --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -2852,7 +2852,8 @@ _PyLong_Frexp(PyLongObject *a, Py_ssize_t *e) { Py_ssize_t a

[issue40455] GCC 10 compiler warnings

2020-05-01 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +19169 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19852 ___ Python tracker <https://bugs.python.org/issu

[issue39573] [C API] Make PyObject an opaque structure in the limited C API

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 5e8ffe147710e449c2e935a4e2ff5cbd19828a8a by Hai Shi in branch 'master': bpo-39573: Use Py_IS_TYPE to check for types (GH-19882) https://github.com/python/cpython/commit/5e8ffe147710e449c2e935a4e2ff5c

[issue40455] GCC 10 compiler warnings

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset b88cd585d36d6285a5aeb0b6fdb70c134062181e by Dong-hee Na in branch 'master': bpo-40455: Remove gcc10 warning about x_digits (#19852) https://github.com/python/cpython/commit/b88cd585d36d6285a5aeb0b6fdb70c

[issue40489] INCREF/DECREFs around the rich comparison needs tests

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: I can crash python interpreter with few lines of code when if we remove those codes. class S(str): def __eq__(self, other): d.clear() return NotImplemented def __hash__(self): return hash('test') d = {S(): 'va

[issue40489] INCREF/DECREFs around the rich comparison needs tests

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: Would you like to add a test for this case? -- ___ Python tracker <https://bugs.python.org/issue40489> ___ ___ Python-bugs-list m

[issue40489] INCREF/DECREFs around the rich comparison needs tests

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: > Would you like to add a test for this case? Oh, I mean, is it good to add a test for this case? -- ___ Python tracker <https://bugs.python.org/issu

[issue40489] INCREF/DECREFs around the rich comparison needs tests

2020-05-04 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +19221 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19906 ___ Python tracker <https://bugs.python.org/issu

[issue40501] Deprecate and remove ctypes usage in uuid

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

[issue40489] INCREF/DECREFs around the rich comparison needs tests

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 785f5e6d674306052bf865677d885c30561985ae by Dong-hee Na in branch 'master': bpo-40489: Add test case for dict contain use after free (GH-19906) https://github.com/python/cpython/commit/785f5e6d674306052bf865677d885c

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

2020-05-04 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19222 pull_request: https://github.com/python/cpython/pull/19907 ___ Python tracker <https://bugs.python.org/issue1635

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

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 92a98ed97513c6e365ce8765550ea65d0ddc8cd7 by Dong-hee Na in branch 'master': bpo-1635741: Port syslog module to multiphase initialization (GH-19907) https://github.com/python/cpython/commit/92a98ed97513c6e365ce8765550ea6

[issue40459] [easy] undefined names in platform.py

2020-05-04 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 1e7e4519a8ddc2239101a0146d788c9161143a77 by Dennis Sweeney in branch 'master': bpo-40459: Fix NameError in platform.py (GH-19855) https://github.com/python/cpython/commit/1e7e4519a8ddc2239101a0146d788c9161143a77 -- nosy:

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

2020-05-05 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19238 pull_request: https://github.com/python/cpython/pull/19923 ___ Python tracker <https://bugs.python.org/issue1635

[issue40518] ValueError when using resource.setrlimit on macOS Catalina

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

[issue40514] Add --experimental-isolated-subinterpreters build option

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

[issue40520] Remove redundant comment in pydebug.h

2020-05-05 Thread Dong-hee Na
Change by Dong-hee Na : -- title: port the declartions in pydebug.h to initconfig.h -> Remove redundant comment in pydebug.h ___ Python tracker <https://bugs.python.org/issu

[issue40520] Remove redundant comment in pydebug.h

2020-05-05 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks hai shi :) -- nosy: +corona10 resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40512] Meta issue: per-interpreter GIL

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

[issue40527] Multiple "unknown option" errors when passing unknown arguments to the interpreter

2020-05-06 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 2668a9a5aa506a048aef7b4881c8dcf6b81c6870 by Victor Stinner in branch 'master': bpo-40527: Fix command line argument parsing (GH-19955) https://github.com/python/cpython/commit/2668a9a5aa506a048aef7b4881c8dcf6b81c6870 -- nosy:

[issue40527] Multiple "unknown option" errors when passing unknown arguments to the interpreter

2020-05-06 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks for the bug report Florian and for work Victor! I am now closing this issue :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bug

<    5   6   7   8   9   10   11   12   13   14   >