[issue43152] warning: unused variable 'code'

2021-02-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3cf0833f42ebde24f6435b838785ca4f946b988f by Dong-hee Na in branch 'master': bpo-43152: Update assert statement to remove unused warning (GH-24473) https://github.com/python/cpython/commit/3cf0833f42ebde24f6435b838785ca

[issue43152] warning: unused variable 'code'

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

[issue43152] warning: unused variable 'code'

2021-02-06 Thread Dong-hee Na
New submission from Dong-hee Na : Python/ceval.c:4747:19: warning: unused variable 'code' [-Wunused-variable] PyCodeObject *code = (PyCodeObject *)_co; Very nit compiler warning but should be fixed ;) -- components: Interpreter Core messages: 386583 nosy: Mark.Shannon

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

2021-02-06 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.10, Python 3.8 ___ Python tracker <https://bugs.python.org/issue43144> ___ ___ Python-bugs-list mailing list Unsub

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

2021-02-06 Thread Dong-hee Na
Dong-hee Na added the comment: @arekm Would you like to submit the patch through Github? -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue43

[issue43106] Some macOS open flags are missing from posixmodule.c

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

[issue43106] Some macOS open flags are missing from posixmodule.c

2021-02-03 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset f917c243c52d62a787738379fb9b97acbed02c17 by Dong-hee Na in branch 'master': bpo-43106: Add os.O_EVTONLY/O_FSYNC/O_SYMLINK/O_NOFOLLOW_ANY (GH-24428) https://github.com/python/cpython/commit/f917c243c52d62a787738379fb9b97

[issue43106] Some macOS open flags are missing from posixmodule.c

2021-02-03 Thread Dong-hee Na
Dong-hee Na added the comment: O_FSYNC could be used as an alias of O_SYNC. O_EVTONLY is used for kqueue API. but other flags I don't know where to use it. So I submit the patch to add O_FSYNC and O_EVTONLY only. If other flags should be added, please let me

[issue43106] Some macOS open flags are missing from posixmodule.c

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

[issue43106] Some macOS open flags are missing from posixmodule.c

2021-02-02 Thread Dong-hee Na
Dong-hee Na added the comment: I can see some users use such flags with manual mapping Looks good to support it :) https://github.com/TaskEvolution/Task-Coach-Evolution/blob/master/taskcoach/taskcoachlib/filesystem/fs_darwin.py#L27 -- ___ Python

[issue43106] Some macOS open flags are missing from posixmodule.c

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

[issue42647] Unable to use concurrent.futures in atexit hook

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

[issue42939] Linux's chattr i.e. ioctl(FS_IOC_SETFLAGS) is not supported in os.chflags()

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

[issue40455] GCC 10 compiler warnings

2021-01-30 Thread Dong-hee Na
Dong-hee Na added the comment: Thank you Pablo!! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40455] GCC 10 compiler warnings

2021-01-30 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.10 -Python 3.9 ___ Python tracker <https://bugs.python.org/issue40455> ___ ___ Python-bugs-list mailing list Unsub

[issue40455] GCC 10 compiler warnings

2021-01-30 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 86e322f1412be6c5a6c8fa8e73af68b99c42bb18 by Pablo Galindo in branch 'master': bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24384) https://github.com/python/cpython/commit/86e322f1412be6c5a6c8fa8e73af68

[issue42972] [C API] Heap types (PyType_FromSpec) must fully implement the GC protocol

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

[issue42955] Add sys.module_names: list of stdlib module names (Python and extension modules)

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

[issue42923] Py_FatalError(): dump the list of extension modules

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

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

2021-01-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 2396614b8958ad202378fd71a598eb4106ac5896 by Dong-hee Na in branch 'master': bpo-1635741: Fix PyModule_AddObjectRef to use EXPORT_FUNC (GH-24205) https://github.com/python/cpython/commit/2396614b8958ad202378fd71a598eb

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

2021-01-12 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +23031 pull_request: https://github.com/python/cpython/pull/24205 ___ Python tracker <https://bugs.python.org/issue1635

[issue28937] str.split(): allow removing empty strings (when sep is not None)

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

[issue42843] What min_sphinx for Python 3.10

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

[issue42808] Add PyType_Type.tp_vectorcall for type(obj) performance

2021-01-02 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue42808> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks, Ross Rhodes for the fix! And thanks, Wüstengecko for the report! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 69120613c071e9327a9dc6e4b1ff21b2e94d885e by Ross in branch '3.9': [3.9] bpo-42756: Configure LMTP Unix-domain socket to use global default timeout when timeout not provided (GH-23969) (GH-24050) https://github.com/python/cpyt

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -22885 ___ Python tracker <https://bugs.python.org/issue42756> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +22885 pull_request: https://github.com/python/cpython/pull/24049 ___ Python tracker <https://bugs.python.org/issue42

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3bf05327c2b25d42b92795d9d280288c22a0963d by Ross in branch 'master': bpo-42756: Configure LMTP Unix-domain socket to use global default timeout when timeout not provided (GH-23969) https://github.com/python/cpyt

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ec3165320e81ac87edcb85c86c452528ddbaec1c by Dong-hee Na in branch 'master': bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) https://github.com/python/cpython/commit/ec3165320e81ac87edcb85c86c4525

[issue34752] warnings.warn fails silently with unicode input

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue34752> ___ ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: > For tests with the external environment, How about skipping tests if servers are not available? Hmm, I change my mind this is not a good idea :( -- ___ Python tracker <https://bugs.python.org/issu

[issue42801] Exception catching function crashes on recursive list

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: FYI,I am able to reproduce on Python 3.9 The master version is not able to reproduce. -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue42

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: > How to handle similar breakage of external servers? For tests with the external environment, How about skipping tests if servers are not available? It is assumed that if there is a change related to NNTP, it is well checked in the CI and review. This

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: I submit the patch to use group_name which is mentioned from https://news.aioe.org/manual/aioe-hierarchy/ IMHO, it will be not changed frequently than what we used before. -- stage: patch review -> ___ Pyt

[issue42794] test_nntplib fails on CI

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

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: 4 ways / 2 ways -- ___ Python tracker <https://bugs.python.org/issue42794> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: == CPython 3.10.0a3+ (heads/master:c8a7b8fa1b, Jan 1 2021, 08:28:41) [GCC 7.5.0] == Linux-5.4.0-1031-azure-x86_64-with-glibc2.27 little-endian == cwd: /home/corona10/cpython/build/test_python_66899æ == CPU count: 2 == encodings: locale=UTF-8, FS=utf-8 0:00:00 load

[issue42794] test_nntplib fails on CI

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

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2020-12-31 Thread Dong-hee Na
Change by Dong-hee Na : -- type: crash -> behavior ___ Python tracker <https://bugs.python.org/issue42756> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2020-12-31 Thread Dong-hee Na
Dong-hee Na added the comment: This is a regression bug that should be fixed. -- ___ Python tracker <https://bugs.python.org/issue42756> ___ ___ Python-bug

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2020-12-31 Thread Dong-hee Na
Dong-hee Na added the comment: This -- versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issue42756> ___ ___ Python-bugs-list mailing list Unsub

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

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

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

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

[issue40522] [subinterpreters] Get the current Python interpreter state from Thread Local Storage (autoTSSkey)

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

[issue40810] sqlite3 test CheckTraceCallbackContent fails for sqlite v3.7.3 through 3.7.14.1

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

[issue42767] Review usage of atomic variables in signamodule.c

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

[issue40956] Use Argument Clinic in sqlite3

2020-12-27 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3ccef1ca474592e191a00e131dfbaf777db271e9 by Erlend Egeberg Aasland in branch 'master': bpo-40956: Convert _sqlite3.Connection to Argument Clinic, part 2 (GH-23838) https://github.com/python/cpython/commit/3ccef1ca474592e191a00e131dfbaf

[issue42755] sqlite3.Connection.backup default value is diffrent between implmentation and docs

2020-12-27 Thread Dong-hee Na
New submission from Dong-hee Na : Docs says that pages default value is 0 but the implementation is -1 docs: https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.backup impl: https://github.com/python/cpython/blob/f4507231e3f0cf8827cec5592571ce371c6813e8/Modules/_sqlite

[issue42747] Remove Py_TPFLAGS_HAVE_VERSION_TAG flag?

2020-12-26 Thread Dong-hee Na
Dong-hee Na added the comment: Let's emit the deprecated message if Py_TPFLAGS_HAVE_VERSION_TAG is set ;) For example, PyType_Ready looks like a good place -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/is

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-12-26 Thread Dong-hee Na
Dong-hee Na added the comment: @pablogsal @rhettinger @mdk @Mariatta Cool!! everything looks okay! Now I close this issue. Thank you to everyone who works on this issue!! -- resolution: -> fixed stage: patch review -> resolved status: open -&g

[issue42748] test_asdl_parser: load_module() method is deprecated

2020-12-26 Thread Dong-hee Na
Change by Dong-hee Na : -- components: +Tests resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement versions: +Python 3.10 ___ Python tracker <https://bugs.python

[issue42748] test_asdl_parser: load_module() method is deprecated

2020-12-26 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch nosy: +corona10 nosy_count: 1.0 -> 2.0 pull_requests: +22801 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23954 ___ Python tracker <https://bugs.python.org/i

[issue38655] ipaddress.ip_network('0.0.0.0/0').is_private == True

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

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-12-18 Thread Dong-hee Na
Dong-hee Na added the comment: @mdk No https://github.com/python/python-docs-theme/pull/57 must be fixed ;) -- ___ Python tracker <https://bugs.python.org/issue42

[issue40956] Use Argument Clinic in sqlite3

2020-12-18 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 2179349d8cf45b1202775547df384b1fde31630a by Dong-hee Na in branch 'master': bpo-40956: Fix sqlite3 AC code (GH-23837) https://github.com/python/cpython/commit/2179349d8cf45b1202775547df384b

[issue40956] Use Argument Clinic in sqlite3

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

[issue40956] Use Argument Clinic in sqlite3

2020-12-18 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 1ba82bbc50a52f40ad05f3c4aaf2e159e0ce126d by Erlend Egeberg Aasland in branch 'master': bpo-40956: Convert _sqlite3.Connection to Argument Clinic (GH-23341) https://github.com/python/cpython/commit/1ba82bbc50a52f40ad05f3c4aaf2e1

[issue42639] Make atexit state per interpreter

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

[issue42609] Eval with too high string multiplication crashes newer Python versions

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

[issue42609] Eval with too high string multiplication crashes newer Python versions

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

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

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

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

2020-12-08 Thread Dong-hee Na
Dong-hee Na added the comment: > another solution is to move the "module state" into the interpreter, I am +1 on this solution if this module is a very special case. -- ___ Python tracker <https://bugs.pytho

[issue42506] Unexpected output when running test_format

2020-11-30 Thread Dong-hee Na
Dong-hee Na added the comment: Thank you ZackerySpytz! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue42506] Unexpected output when running test_format

2020-11-30 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 96545924780da34afc457bc22a869096af985ebf by Zackery Spytz in branch 'master': bpo-42506: Fix unexpected output in test_format (GH-23564) https://github.com/python/cpython/commit/96545924780da34afc457bc22a869096af985ebf -- nosy:

[issue42299] Remove formatter module

2020-11-25 Thread Dong-hee Na
Dong-hee Na added the comment: @terry.reedy @vstinner Thank you, Terry and Victor, and goodbye formatter module! -- nosy: +vstinner resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracke

[issue42299] Remove formatter module

2020-11-25 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset be319c0c108e308fb7ed6ec9522e969fdffd1253 by Dong-hee Na in branch 'master': bpo-42299: Remove formatter module (GH-23476) https://github.com/python/cpython/commit/be319c0c108e308fb7ed6ec9522e96

[issue42299] Remove formatter module

2020-11-24 Thread Dong-hee Na
Dong-hee Na added the comment: @christian.heimes Thank you Christian I also discuss this issue on python-dev and everybody agree with removing this module. I will remove this module ;) -- ___ Python tracker <https://bugs.python.org/issue42

[issue42299] Remove formatter module

2020-11-24 Thread Dong-hee Na
Change by Dong-hee Na : -- title: Add test_formatter (or remove deprecated formatter module?) -> Remove formatter module ___ Python tracker <https://bugs.python.org/issu

[issue42299] Add test_formatter (or remove deprecated formatter module?)

2020-11-23 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +22368 pull_request: https://github.com/python/cpython/pull/23476 ___ Python tracker <https://bugs.python.org/issue42

[issue42299] Add test_formatter (or remove deprecated formatter module?)

2020-11-23 Thread Dong-hee Na
Dong-hee Na added the comment: > If so, the patch, aDo we still want to remove formatted IMHO, 3.10 is a good time to remove formatter -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issu

[issue42427] Use the errno attribute of OSError instead of args[0]

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

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

2020-11-20 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset a6109ef68d421712ba368ef502c4789e8de113e0 by Erlend Egeberg Aasland in branch 'master': bpo-1635741: Convert _sre types to heap types and establish module state (PEP 384) (GH-23393) https://github.com/python/cpyt

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

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

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

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

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

2020-11-19 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset cfeb5437a8910e28726422a14a93a36584e32238 by Christian Heimes in branch 'master': bpo-1635741: Port _struct to multiphase initialization (GH-23398) https://github.com/python/cpython/commit/cfeb5437a8910e28726422a14a93a3

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-11-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 0f4dd87a31130b245ec4c6ded9fd6f247e700c0d by Dong-hee Na in branch '3.9': [3.9] bpo-42042: Use ids attribute instead of names attribute (GH-22739) (GH-23265) https://github.com/python/cpython/commit/0f4dd87a31130b245ec4c6ded9fd6f

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-11-13 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +lukasz.langa versions: +Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue42042> ___ ___ Python-bug

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-11-13 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +22162 pull_request: https://github.com/python/cpython/pull/23265 ___ Python tracker <https://bugs.python.org/issue42

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-11-13 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 09490a109faaee9cc393b52742a8575c116c56ba by Dong-hee Na in branch 'master': bpo-42042: Use ids attribute instead of names attribute (GH-22739) https://github.com/python/cpython/commit/09490a109faaee9cc393b52742a857

[issue42242] Backport SQLite trace API v2

2020-11-02 Thread Dong-hee Na
Dong-hee Na added the comment: We often submit the backported patch by using the backport label from the origin PR. (https://github.com/python/cpython/pull/19581) So please discuss the backporting on bpo-40318 -- nosy: +corona10 resolution: -> duplicate stage: patch rev

[issue42241] Backport SQLite trace API v2

2020-11-02 Thread Dong-hee Na
Dong-hee Na added the comment: We often submit the backported patch by using the backport label from the origin PR. (https://github.com/python/cpython/pull/19581) So please discuss about the bacporting on bpo-40318 -- nosy: +corona10 resolution: -> duplicate stage: patch rev

[issue37483] Add PyObject_CallOneArg()

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

[issue37483] Add PyObject_CallOneArg()

2020-11-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 7feb54a6348f6220b2798686c812f110b53d by Dong-hee Na in branch 'master': bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062) https://github.com/python/cpython/commit/7feb54a6348f6220b27986777

[issue37483] Add PyObject_CallOneArg()

2020-10-31 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 nosy_count: 4.0 -> 5.0 pull_requests: +21981 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/23062 ___ Python tracker <https://bugs.python.org/i

[issue40956] Use Argument Clinic in sqlite3

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: @erlendaasland Thank you erlendaasland for working on GH-22484. This time was a good time to review my AC knowledge ;) -- ___ Python tracker <https://bugs.python.org/issue40

[issue40956] Use Argument Clinic in sqlite3

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 7d210271579ae31f43b32f73c2aff5bc4fe0d27f by Erlend Egeberg Aasland in branch 'master': bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484) https://github.com/python/cpyt

[issue42195] Inconsistent __args__ between typing.Callable and collections.abc.Callable

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: @gvanrossum Sorry, Not this time. I just add myself to observe how to solve this issue. Maybe Batuhan is the proper member to handle this issue. Just question to this issue. Since GenericAlias does not have a Py_TPFLAGS_BASETYPE flag, IMHO we have to add

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: > but likely for the beta/release candidate phases. I think so too -- ___ Python tracker <https://bugs.python.org/issu

[issue42208] Using logging or warnings during Python finalization does crash Python

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

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: @pablogsal Since this is the developer guide of 3.10. I would like to suggest as release bloker, if you don't agree you can change it ;) -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/is

[issue42042] sphinx3 renders diffrently docs.python.org for 3.10

2020-10-30 Thread Dong-hee Na
Change by Dong-hee Na : -- priority: normal -> release blocker ___ Python tracker <https://bugs.python.org/issue42042> ___ ___ Python-bugs-list mailing list Un

[issue42202] Optimize function annotation

2020-10-30 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue42202> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42202] Optimize function annotation

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: @serhiy race condition sorry ;) -- ___ Python tracker <https://bugs.python.org/issue42202> ___ ___ Python-bugs-list mailin

[issue42202] Optimize function annotation

2020-10-30 Thread Dong-hee Na
Dong-hee Na added the comment: I like the 1st option which uses a tuple -- nosy: +corona10 -serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue42

[issue42195] Inconsistent __args__ between typing.Callable and collections.abc.Callable

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

[issue42172] Typo in test library for test_socket.py

2020-10-29 Thread Dong-hee Na
Dong-hee Na added the comment: merged! Thank you for working on this!! @adkhunt ;) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue42172] Typo in test library for test_socket.py

2020-10-29 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: -Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue42172> ___ ___ Python-bugs-list mailing list Unsub

[issue42172] Typo in test library for test_socket.py

2020-10-29 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset d6238ba82d07e8e0783b692f37dc4b7c8617294b by Akashkumar D Khunt in branch 'master': bpo-42172: Correct typo for test_socket.py (GH-23013) https://github.com/python/cpython/commit/d6238ba82d07e8e0783b692f37dc4b

[issue42172] Typo in test library for test_socket.py

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

<    2   3   4   5   6   7   8   9   10   11   >