[issue43305] A typo in /Modules/_io/bufferedio.c

2021-02-24 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +serhiy.storchaka, vstinner ___ Python tracker <https://bugs.python.org/issue43305> ___ ___ Python-bugs-list mailing list Unsub

[issue43144] test_unicodedata: test_normalization uses network but doesn't depend on network resource

2021-02-25 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c6ccdfb479cb0a4a491575ef0bafaa0d29daae1a by Ammar Askar in branch 'master': bpo-43144: Mark unicodedata's test_normalization as requiring network (GH-24650) https://github.com/python/cpython/commit/c6ccdfb479cb0a4a491575ef0

[issue43144] test_unicodedata: test_normalization uses network but doesn't depend on network resource

2021-02-25 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.8 ___ Python tracker <https://bugs.python.or

[issue43335] _ctypes/callbacks.c cannot be compiled by gcc 4.4.7 (RHEL6)

2021-02-26 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue43335> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43335] _ctypes/callbacks.c cannot be compiled by gcc 4.4.7 (RHEL6)

2021-02-26 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +23448 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24662 ___ Python tracker <https://bugs.python.org/issu

[issue43335] _ctypes/callbacks.c cannot be compiled by gcc 4.4.7 (RHEL6)

2021-02-26 Thread Dong-hee Na
Dong-hee Na added the comment: @Daniel Do you want to submit the patch? -- ___ Python tracker <https://bugs.python.org/issue43335> ___ ___ Python-bugs-list m

[issue43335] _ctypes/callbacks.c cannot be compiled by gcc 4.4.7 (RHEL6)

2021-02-27 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset bf9de7ab24d9d7068645b202bc47146b9a4f2726 by Dong-hee Na in branch 'master': bpo-43335: Update macro to check gcc version (GH-24662) https://github.com/python/cpython/commit/bf9de7ab24d9d7068645b202bc4714

[issue43335] _ctypes/callbacks.c cannot be compiled by gcc 4.4.7 (RHEL6)

2021-02-27 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issue43335> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43335] _ctypes/callbacks.c cannot be compiled by gcc 4.4.7 (RHEL6)

2021-02-27 Thread Dong-hee Na
Dong-hee Na added the comment: Thank you Daniel for reporting and suggestion! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue43284] Wrong windows build in 20H2

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

[issue43354] xmlrpc.client: Fault.faultCode erroneously documented to be a string, should be int

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

[issue43371] Mock.assert_has_calls works strange

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

[issue43287] Use PEP 590 vectorcall to speed up calls to filter()

2021-03-10 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 9a9c11ad41d7887f3d6440e0f0e8966156d959b5 by Dong-hee Na in branch 'master': bpo-43287: Use PEP 590 vectorcall to speed up filter() (GH-24611) https://github.com/python/cpython/commit/9a9c11ad41d7887f3d6440e0f0e896

[issue43287] Use PEP 590 vectorcall to speed up calls to filter()

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

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

2020-05-21 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19565 pull_request: https://github.com/python/cpython/pull/20290 ___ Python tracker <https://bugs.python.org/issue39

[issue40714] Remove compile warning from _zoneinfo.c

2020-05-21 Thread Dong-hee Na
New submission from Dong-hee Na : /Users/corona10/oss/cpython/Modules/_zoneinfo.c:1487:9: warning: variable 'dst_offset' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] if (*p == '\0') { ^~ /User

[issue40714] Remove compile warning from _zoneinfo.c

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

[issue40714] Remove compile warning from _zoneinfo.c

2020-05-21 Thread Dong-hee Na
Dong-hee Na added the comment: It happened from clang compiler of macOS. Clang 11.0.3 (clang-1103.0.32.29)] -- nosy: +p-ganssle ___ Python tracker <https://bugs.python.org/issue40

[issue40714] Remove compile warning from _zoneinfo.c

2020-05-21 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue40714> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40714] Remove compile warning from _zoneinfo.c

2020-05-21 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset a487a39dca4c41305928c7dfdbcb0b3aa344683b by Dong-hee Na in branch 'master': bpo-40714: Remove compile warning from _zoneinfo.c (GH-20291) https://github.com/python/cpython/commit/a487a39dca4c41305928c7dfdbcb0b

[issue40714] Remove compile warning from _zoneinfo.c

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

[issue40443] Remove unused imports in the stdlib (April 2020 edition)

2020-05-24 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 nosy_count: 3.0 -> 4.0 pull_requests: +19617 pull_request: https://github.com/python/cpython/pull/20354 ___ Python tracker <https://bugs.python.org/issu

[issue40443] Remove unused imports in the stdlib (April 2020 edition)

2020-05-24 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3436f5f899f272d7164add072beb18eebd46d777 by Dong-hee Na in branch 'master': bpo-40443: Remove unused imports in the zoneinfo (GH-20354) https://github.com/python/cpython/commit/3436f5f899f272d7164add072beb18

[issue40328] Add tools for generating mappings_XX.h

2020-05-24 Thread Dong-hee Na
Dong-hee Na added the comment: > Would you close this issue? mappings_hk.h mappings_tw.h are still left :) -- ___ Python tracker <https://bugs.python.org/issu

[issue40764] Conflation of Counter with Multiset

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

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

2020-05-25 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ad3252bad905d41635bcbb4b76db30d570cf0087 by Dong-hee Na in branch 'master': bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290) https://github.com/python/cpython/commit/ad3252bad905d41635bcbb4b76db30

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

2020-05-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19654 pull_request: https://github.com/python/cpython/pull/20391 ___ Python tracker <https://bugs.python.org/issue39

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

2020-05-25 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 7d847e29d76b178c2db66b180065771b4d90c78f by Dong-hee Na in branch 'master': bpo-39573: Fix buildbot failure for tupleobject.c (GH-20391) https://github.com/python/cpython/commit/7d847e29d76b178c2db66b18006577

[issue40737] Fix possible reference leak for sqlite3 initialization

2020-05-26 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 5eb45d7d4e812e89d77da84cc619e9db81561a34 by Erlend Egeberg Aasland in branch 'master': bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323) https://github.com/python/cpython/commit/5eb45d7d4e812e89d77da84cc619e9

[issue40778] Updating Py_REFCNT and Py_SIZE to use _PyObject_CAST_CONS

2020-05-26 Thread Dong-hee Na
New submission from Dong-hee Na : See: https://github.com/python/cpython/pull/20290#discussion_r430007803 -- assignee: corona10 components: C API messages: 369974 nosy: corona10, vstinner priority: normal severity: normal status: open title: Updating Py_REFCNT and Py_SIZE to use

[issue40737] Fix possible reference leak for sqlite3 initialization

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

[issue40778] Updating Py_REFCNT and Py_SIZE to use _PyObject_CAST_CONS

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

[issue40778] Updating Py_REFCNT and Py_SIZE to use _PyObject_CAST_CONS

2020-05-26 Thread Dong-hee Na
Dong-hee Na added the comment: Victor will convert the macros to the functions. So this change will be included in his PR. -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracke

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

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

[issue40826] Segfaults on io.FileIO(0).name in 3.9

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

[issue40826] Segfaults on io.FileIO(0).name in 3.9

2020-05-30 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks for report, I can reproduce it -- stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue40826> ___ _

[issue40826] Segfaults when close file descriptor 0

2020-05-30 Thread Dong-hee Na
Dong-hee Na added the comment: FYI this change fix this issue. --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -1782,7 +1782,11 @@ PyOS_FiniInterrupts(void) int PyOS_InterruptOccurred(void) { -PyInterpreterState *interp = _PyInterpreterState_GET(); +PyThreadState

[issue40825] Add a "strict" parameter to csv.writer and csv.DictWriter

2020-05-30 Thread Dong-hee Na
Dong-hee Na added the comment: I am +1 on with strict mode. But I want to hear other core developers opinions. -- nosy: +corona10, serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue40

[issue40826] Segfaults when close file descriptor 0

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

[issue40686] Compiler warnings in _zoneinfo.c on Windows build in 64-bit

2020-05-31 Thread Dong-hee Na
Dong-hee Na added the comment: @pablogsal GH-20342 looks like related to this issue. Can you update the current status? -- nosy: +corona10, pablogsal ___ Python tracker <https://bugs.python.org/issue40

[issue40788] Build issue Solaris 10 Sparc

2020-05-31 Thread Dong-hee Na
Dong-hee Na added the comment: Please submit the compile error log you met :) It will be helpful to maintainers -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue40

[issue40686] Compiler warnings in _zoneinfo.c on Windows build in 64-bit

2020-06-01 Thread Dong-hee Na
Dong-hee Na added the comment: Two things. 1. GH-20342 solved this issue? 2. If not what's left for this issue? :) Sorry, Normally I should check the current status. But I don't have Windows machine so I can not test it. However the update will help contributors who want to

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

2020-06-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset e9684fac5a158be9806304a676e619857520a4dc by Dong-hee Na in branch 'master': bpo-1635741: Port fcntl module to multiphase initialization (GH-20540) https://github.com/python/cpython/commit/e9684fac5a158be9806304a676e619

[issue40841] Implement mimetypes.sniff

2020-06-01 Thread Dong-hee Na
New submission from Dong-hee Na : The current mimetypes.guess_type API guesses file types based on file extensions. However, there is a more accurate method which is calling sniffing. Some languages like Go(https://golang.org/pkg/net/http/#DetectContentType) provides mimesniff API and the

[issue40841] Implement mimetypes.sniff

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

[issue40841] Provide mimetypes.sniff API as stdlib

2020-06-01 Thread Dong-hee Na
Change by Dong-hee Na : -- title: Provide mimetypes.sniff API -> Provide mimetypes.sniff API as stdlib ___ Python tracker <https://bugs.python.org/issu

[issue40841] Provide mimetypes.sniff API

2020-06-01 Thread Dong-hee Na
Change by Dong-hee Na : -- title: Implement mimetypes.sniff -> Provide mimetypes.sniff API ___ Python tracker <https://bugs.python.org/issue40841> ___ ___ Py

[issue40841] Provide mimetypes.sniff API as stdlib

2020-06-02 Thread Dong-hee Na
Dong-hee Na added the comment: I ping some of the core developers who recently work on this module. Sorry if this topic is not interesting to you :( I want to listen to how about provide this API as the stdlib API. Three things I'd like to appeal through this proposal. 1. It will pr

[issue40222] "Zero cost" exception handling

2020-06-02 Thread Dong-hee Na
Dong-hee Na added the comment: +1 -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue40222> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40686] Compiler warnings in _zoneinfo.c on Windows build in 64-bit

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

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

2020-06-05 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3ad52e366fea37b02a3f619e6b7cffa7dfbdfa2e by Dong-hee Na in branch 'master': bpo-1635741: Port mmap module to multiphase initialization (GH-19459) https://github.com/python/cpython/commit/3ad52e366fea37b02a3f619e6b7cff

[issue40841] Provide mimetypes.sniff API as stdlib

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

[issue40873] Something wrong with html.unescape()

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

[issue40873] Something wrong with html.unescape()

2020-06-09 Thread Dong-hee Na
Change by Dong-hee Na : -- stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue40873> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue40873] Something wrong with html.unescape()

2020-06-09 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.10, Python 3.9 ___ Python tracker <https://bugs.python.org/issue40873> ___ ___ Python-bugs-list mailing list Unsub

[issue40873] Something wrong with html.unescape()

2020-06-09 Thread Dong-hee Na
Change by Dong-hee Na : -- stage: needs patch -> versions: -Python 3.10, Python 3.9 ___ Python tracker <https://bugs.python.org/issue40873> ___ ___ Python-

[issue40925] Remove redundant macros used for stack manipulation in interpreter

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

[issue40925] Remove redundant macros used for stack manipulation in interpreter

2020-06-10 Thread Dong-hee Na
Dong-hee Na added the comment: AFAIK, SET_VALUE is not used in CPython master codebase. -- ___ Python tracker <https://bugs.python.org/issue40925> ___ ___ Pytho

[issue40925] Remove redundant macros used for stack manipulation in interpreter

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

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

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20005 pull_request: https://github.com/python/cpython/pull/20808 ___ Python tracker <https://bugs.python.org/issue1635

[issue40949] test_socket: threading_cleanup() failed to cleanup 0 threads (count: 0, dangling: 5)

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

[issue40950] PEP 3121 applied to nis module

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- assignee: corona10 components: Extension Modules nosy: corona10 priority: normal severity: normal status: open title: PEP 3121 applied to nis module type: enhancement versions: Python 3.10 ___ Python tracker <ht

[issue40950] PEP 3121 applied to nis module

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

[issue40950] PEP 3121 applied to nis module

2020-06-11 Thread Dong-hee Na
New submission from Dong-hee Na : New changeset ddef3bdc7b254a7e1129a52c17d79cb7c73a88f5 by Dong-hee Na in branch 'master': bpo-40950: Port nis module to multiphase initialization (GH-20811) https://github.com/python/cpython/commit/ddef3bdc7b254a7e1129a52c17d79c

[issue40950] PEP 3121 applied to nis module

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

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

2020-06-12 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20041 pull_request: https://github.com/python/cpython/pull/20848 ___ Python tracker <https://bugs.python.org/issue1635

[issue40966] Remove redundant var in PyErr_NewException

2020-06-12 Thread Dong-hee Na
Dong-hee Na added the comment: Merged! Thanks for the contribution! -- nosy: +corona10 resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40957] _Py_fopen_obj leaks reference on audit error

2020-06-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 9672912e8f90374fd31b37ca0fb7cefbc6f4c555 by Christian Heimes in branch 'master': bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827) https://github.com/python/cpython/commit/9672912e8f90374fd31b37ca0fb7cefbc6f4c555 -- nosy:

[issue40957] _Py_fopen_obj leaks reference on audit error

2020-06-13 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks for the work! Christian Heimes -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section

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

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

2020-06-15 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset bf69a8f99f1b0e19a59509c6c4d7015a31d881a1 by Dong-hee Na in branch 'master': bpo-1635741: Port _dbm module to multiphase initialization (GH-20848) https://github.com/python/cpython/commit/bf69a8f99f1b0e19a59509c6c4d701

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

2020-06-16 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20099 pull_request: https://github.com/python/cpython/pull/20920 ___ Python tracker <https://bugs.python.org/issue1635

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

2020-06-16 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c4862e333ab405dd5789b4061222db1982147de4 by Dong-hee Na in branch 'master': bpo-1635741: Port _gdbm module to multiphase initialization (GH-20920) https://github.com/python/cpython/commit/c4862e333ab405dd5789b4061222db

[issue40987] Add tests to test_interpreters to import C extension modules converted to PEP 489 multiphase initialization

2020-06-16 Thread Dong-hee Na
Dong-hee Na added the comment: > According to Dong-hee, importing dbm in a subinterpreter leaks references: GH-20920 fixed the leak :) -- ___ Python tracker <https://bugs.python.org/issu

[issue40987] Add tests to test_interpreters to import C extension modules converted to PEP 489 multiphase initialization

2020-06-17 Thread Dong-hee Na
Dong-hee Na added the comment: Hmm today I personally wrote the tests for it. Two goals should be achived 1. import doesn't crash 2. Memory leak should be detected. Running "import xxx" in _testcapi.run_in_subinterp() only detect that the import doesn't crash But the

[issue40077] Convert static types to PyType_FromSpec()

2020-06-18 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20139 pull_request: https://github.com/python/cpython/pull/20960 ___ Python tracker <https://bugs.python.org/issue40

[issue40077] Convert static types to PyType_FromSpec()

2020-06-18 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20151 pull_request: https://github.com/python/cpython/pull/20974 ___ Python tracker <https://bugs.python.org/issue40

[issue41036] Visit the type of instance of heap types if tp_traverse is not implemented

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

[issue40077] Convert static types to PyType_FromSpec()

2020-06-19 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ec689187957cc80af56b9a63251bbc295bafd781 by Dong-hee Na in branch 'master': bpo-40077: Convert _bz2 module to use PyType_FromSpec (GH-20960) https://github.com/python/cpython/commit/ec689187957cc80af56b9a63251bbc

[issue41052] Opt out serialization/deserialization for heap type

2020-06-20 Thread Dong-hee Na
New submission from Dong-hee Na : See https://bugs.python.org/issue40077#msg371813 We noticed that heap type has different behavior about serialization/deserialization. Basically it can occur the regression issues. Two things needed. 1. opt out serialization/deserialization for converted

[issue41052] Opt out serialization/deserialization for heap type

2020-06-20 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +shihai1991 ___ Python tracker <https://bugs.python.org/issue41052> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41052] Opt out serialization/deserialization for heap type

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

[issue41052] Opt out serialization/deserialization for heap type

2020-06-21 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 6989af0bc7ea1e9a1acea16794e6f723d7b44110 by Dong-hee Na in branch 'master': bpo-41052: Opt out serialization/deserialization for _random.Random (GH-21002) https://github.com/python/cpython/commit/6989af0bc7ea1e9a1acea16794e6f7

[issue41052] Opt out serialization/deserialization for heap type

2020-06-21 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20201 pull_request: https://github.com/python/cpython/pull/21030 ___ Python tracker <https://bugs.python.org/issue41

[issue41052] Opt out serialization/deserialization for heap type

2020-06-21 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 814b07bf814a804f60b897d18f1dbb5578b2c7fd by Dong-hee Na in branch '3.9': [3.9] bpo-41052: Opt out serialization/deserialization for _random.Random (GH-21002). (GH-21030) https://github.com/python/cpyt

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

2020-06-22 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 1937edd376274cb26090d71253191502a9de32d6 by Dong-hee Na in branch 'master': bpo-1635741: Port _lzma module to multiphase initialization (GH-19382) https://github.com/python/cpython/commit/1937edd376274cb26090d712531915

[issue15666] PEP 3121, 384 refactoring applied to lzma module

2020-06-22 Thread Dong-hee Na
Dong-hee Na added the comment: Fixed by: commit 1937edd376274cb26090d71253191502a9de32d6 Author: Dong-hee Na Date: Tue Jun 23 00:53:07 2020 +0900 bpo-1635741: Port _lzma module to multiphase initialization (GH-19382) -- nosy: +corona10, vstinner resolution: -> fixed st

[issue41111] Convert a few stdlib extensions to the limited C API

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

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

2020-06-26 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20326 pull_request: https://github.com/python/cpython/pull/21168 ___ Python tracker <https://bugs.python.org/issue1635

[issue31082] reduce takes iterable, not just sequence

2020-06-27 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset cd3c2bdd5d53db7fe1d546543d3270916552 by Zackery Spytz in branch 'master': bpo-31082: Use "iterable" in the docstring for functools.reduce() (GH-20796) https://github.com/python/cpython/commit/cd3c2bdd5d53db7fe1d5

[issue31082] reduce takes iterable, not just sequence

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

[issue41164] allow python to build for macosx-11.0-arm64

2020-06-29 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks, Lawrence for the patch. I am happy to see the patch from the Apple team. By the way, is there any way to check that the CPython team can check all the tests works well on the ARM macOS? -- nosy: +corona10, ronaldoussoren

[issue41164] allow python to build for macosx-11.0-arm64

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

[issue41100] Build failure on macOS 11 (beta)

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

[issue41004] Hash collisions in IPv4Interface and IPv6Interface

2020-06-30 Thread Dong-hee Na
Change by Dong-hee Na : -- status: closed -> open versions: +Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue41004> ___ _

[issue41004] Hash collisions in IPv4Interface and IPv6Interface

2020-06-30 Thread Dong-hee Na
Dong-hee Na added the comment: > https://nvd.nist.gov/vuln/detail?vulnId=CVE-2020-14422 As Eric said, this issue is assigned a CVE-2020-14422. I re-open PRs for 3.5 - 3.7 and waiting for other core developers guide. I am +1 on merge this PRs as the security patch. -- nosy: +coron

[issue39314] (readline) Autofill the closing parenthesis during auto-completion for functions which accept no arguments at all

2020-06-30 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset bd4a3f21454a6012f4353e2255837561fc9f0e6a by Rémi Lapeyre in branch 'master': bpo-39314: Closes parenthesis when autocompleting for functions that take no arguments (GH-20562) https://github.com/python/cpyt

[issue39314] (readline) Autofill the closing parenthesis during auto-completion for functions which accept no arguments at all

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

[issue38980] Compile libpython with -fno-semantic-interposition

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

[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 9d006977d7ff5a45d6e7d696c1713fdf2dd308b7 by Mohamed Koubaa in branch 'master': bpo-1635741: Port sha256 module to multiphase init (PEP 489) (GH-21189) https://github.com/python/cpython/commit/9d006977d7ff5a45d6e7d696c1713f

<    7   8   9   10   11   12   13   14   15   16   >