[issue44895] refleak test failure in test_exceptions

2021-08-13 Thread Dong-hee Na
Dong-hee Na added the comment: Oops sorry. Without PR 27746, I was able to reproduce on my macOS environment. test_exceptions leaked [6, 6, 6] references, sum=18 test_exceptions leaked [6, 6, 6] memory blocks, sum=18 test_exceptions failed (reference leak

[issue44895] refleak test failure in test_exceptions

2021-08-14 Thread Dong-hee Na
Dong-hee Na added the comment: Here is the dump I extracted. 0:00:00 load avg: 2.89 Run tests sequentially 0:00:00 load avg: 2.89 [1/1] test_exceptions beginning 6 repetitions 123456 .. test_exceptions leaked [6, 6, 6] references, sum=18 test_exceptions leaked [6, 6, 6] memory blocks, sum

[issue44895] refleak test failure in test_exceptions

2021-08-14 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26243 pull_request: https://github.com/python/cpython/pull/27767 ___ Python tracker <https://bugs.python.org/issue44

[issue44895] refleak test failure in test_exceptions

2021-08-14 Thread Dong-hee Na
Dong-hee Na added the comment: GH-27767 is a tooling patch for extract dump easily. See cpython-1628938551.dump.gz for msg399588. -- ___ Python tracker <https://bugs.python.org/issue44

[issue44895] refleak test failure in test_exceptions

2021-08-17 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c2c857b40f226575d64e0d56a759cbd799f51e62 by Dong-hee Na in branch 'main': bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767) https://github.com/python/cpython/commit/c2c857b40f226575d64e0d56a759cb

[issue24955] webbrowser broken on Mac OS X when using the BROWSER variable

2021-08-17 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.11 -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue24955> ___ ___ Python-bug

[issue42255] webbrowser.MacOSX is unused, untested and undocumented

2021-08-17 Thread Dong-hee Na
Dong-hee Na added the comment: Let's deprecate it from 3.11 and remove it at 3.12 :) -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/is

[issue42255] webbrowser.MacOSX is unused, untested and undocumented

2021-08-17 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.11 -Python 3.10 ___ Python tracker <https://bugs.python.org/issue42255> ___ ___ Python-bugs-list mailing list Unsub

[issue42255] webbrowser.MacOSX is unused, untested and undocumented

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

[issue24234] Should we define complex.__complex__ and bytes.__bytes__?

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

[issue24234] Should we define complex.__complex__ and bytes.__bytes__?

2021-08-22 Thread Dong-hee Na
Dong-hee Na added the comment: @guido >>> issubclass(bytes, typing.SupportsBytes) False IMHO, supporting is reasonable. -- ___ Python tracker <https://bugs.python.or

[issue34234] Use _PyAnyInt_Check() and _PyAnyInt_CheckExact() in 2.7

2021-08-22 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 nosy_count: 2.0 -> 3.0 pull_requests: +26358 pull_request: https://github.com/python/cpython/pull/27901 ___ Python tracker <https://bugs.python.org/issu

[issue24234] Should we define complex.__complex__ and bytes.__bytes__?

2021-08-22 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26359 pull_request: https://github.com/python/cpython/pull/27901 ___ Python tracker <https://bugs.python.org/issue24

[issue34234] Use _PyAnyInt_Check() and _PyAnyInt_CheckExact() in 2.7

2021-08-22 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -26358 ___ Python tracker <https://bugs.python.org/issue34234> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24234] Should we define complex.__complex__ and bytes.__bytes__?

2021-08-23 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 24b63c695ae0a95b06379eaadace66735abac1e2 by Dong-hee Na in branch 'main': bpo-24234: Implement bytes.__bytes__ (GH-27901) https://github.com/python/cpython/commit/24b63c695ae0a95b06379eaadace66

[issue44991] [sqlite3] cleanup callbacks (GIL handling, naming, ...)

2021-08-25 Thread Dong-hee Na
Dong-hee Na added the comment: Obviously, this case could be code churn(we don't accept normally), but if other core-dev agree with the changes. I am fine. -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/is

[issue45000] del __debug__ should be a SyntaxError

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

[issue45000] del __debug__ should be a SyntaxError

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

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue45000> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26402 pull_request: https://github.com/python/cpython/pull/27956 ___ Python tracker <https://bugs.python.org/issue45

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26403 pull_request: https://github.com/python/cpython/pull/27957 ___ Python tracker <https://bugs.python.org/issue45

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c764dfbcbc12c4653fc8ab39773cf973c9db2757 by Dong-hee Na in branch 'main': bpo-45000: Update whatsnews about deleting __debug__ (GH-27956) https://github.com/python/cpython/commit/c764dfbcbc12c4653fc8ab39773cf9

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26404 pull_request: https://github.com/python/cpython/pull/27958 ___ Python tracker <https://bugs.python.org/issue45

[issue45045] Optimize mapping patterns of structural pattern matching

2021-08-29 Thread Dong-hee Na
New submission from Dong-hee Na : There are optimizable points that can be achieved by removing unnecessary tuple transformation and using vector calling convention. +---++--+ | Benchmark | base | opt

[issue45045] Optimize mapping patterns of structural pattern matching

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

[issue45045] Optimize mapping patterns of structural pattern matching

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

[issue45045] Optimize mapping patterns of structural pattern matching

2021-08-29 Thread Dong-hee Na
Dong-hee Na added the comment: With Ken Jin's suggestion +---++--+ | Benchmark | base | PR 28043 | +===++==+ | bench pattern | 482 ns | 373 ns: 1.29x f

[issue45045] Optimize mapping patterns of structural pattern matching

2021-08-30 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset e6497fe698f6e87344501a68ffdea106eafcb257 by Dong-hee Na in branch 'main': bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043) https://github.com/python/cpython/commit/e6497fe698f6e87344501a68ffdea1

[issue45045] Optimize mapping patterns of structural pattern matching

2021-08-30 Thread Dong-hee Na
Change by Dong-hee Na : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue45045> ___ ___ Pyth

[issue45045] Optimize mapping patterns of structural pattern matching

2021-08-30 Thread Dong-hee Na
Dong-hee Na added the comment: For the record, Final benchmark with optimization build + thin LTO option. +---+---+--+ | Benchmark | thin_lto_base | thin_lto_opt | +===+===+==+ | bench pattern

[issue45045] Optimize mapping patterns of structural pattern matching

2021-08-30 Thread Dong-hee Na
Dong-hee Na added the comment: > https://github.com/brandtbucher/patmaperformance Nice benchmark suite, I will take a look :) -- ___ Python tracker <https://bugs.python.org/issu

[issue45056] compiler: Unnecessary None in co_consts

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

[issue45054] json module should issue warning about duplicate keys

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

[issue45094] Consider using __forceinline and __attribute__((always_inline)) on static inline functions (Py_INCREF, Py_TYPE) for debug builds

2021-09-03 Thread Dong-hee Na
Dong-hee Na added the comment: I like the idea of Py_ALWAYS_INLINE personally if we have to do that. -- ___ Python tracker <https://bugs.python.org/issue45

[issue42255] webbrowser.MacOSX is unused, untested and undocumented

2021-09-03 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26583 pull_request: https://github.com/python/cpython/pull/28144 ___ Python tracker <https://bugs.python.org/issue42

[issue42255] webbrowser.MacOSX is unused, untested and undocumented

2021-09-03 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26584 pull_request: https://github.com/python/cpython/pull/28145 ___ Python tracker <https://bugs.python.org/issue42

[issue45034] Improve struct.pack out of range error messages

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

[issue45122] Remove PyCode_New and PyCode_NewWithPosOnlyArgs

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

[issue45122] Remove PyCode_New and PyCode_NewWithPosOnlyArgs

2021-09-06 Thread Dong-hee Na
Dong-hee Na added the comment: FYI, mypyc is using PyCode_New. mypyc should be fixed not to use PyCode_New :) -- ___ Python tracker <https://bugs.python.org/issue45

[issue45115] Windows: enable compiler optimizations when building Python in debug mode

2021-09-06 Thread Dong-hee Na
Dong-hee Na added the comment: I sent the patch for this issue: https://github.com/python/mypy/pull/11067 -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue45

[issue45115] Windows: enable compiler optimizations when building Python in debug mode

2021-09-06 Thread Dong-hee Na
Change by Dong-hee Na : -- Removed message: https://bugs.python.org/msg401202 ___ Python tracker <https://bugs.python.org/issue45115> ___ ___ Python-bugs-list m

[issue45122] Remove PyCode_New and PyCode_NewWithPosOnlyArgs

2021-09-06 Thread Dong-hee Na
Dong-hee Na added the comment: I sent the patch for this issue: https://github.com/python/mypy/pull/11067 -- ___ Python tracker <https://bugs.python.org/issue45

[issue44340] Add support for building cpython with clang thin lto

2021-09-07 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26649 pull_request: https://github.com/python/cpython/pull/28229 ___ Python tracker <https://bugs.python.org/issue44

[issue44987] Speed up unicode normalization of ASCII strings

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

[issue44987] Speed up unicode normalization of ASCII strings

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

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Dong-hee Na
Dong-hee Na added the comment: > Well, someone should write a PR for it. Well, I sent a patch :) -- ___ Python tracker <https://bugs.python.org/issu

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26709 pull_request: https://github.com/python/cpython/pull/28293 ___ Python tracker <https://bugs.python.org/issue44

[issue44987] Speed up unicode normalization of ASCII strings

2021-09-11 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 5277ffe12d492939544ff9c54a3aaf448b913fb3 by Dong-hee Na in branch 'main': bpo-44987: Fix typo whatsnew 3.11 (GH-28293) https://github.com/python/cpython/commit/5277ffe12d492939544ff9c54a3aaf

[issue45126] [sqlite3] cleanup and harden Connection and Cursor __init__

2021-09-12 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c78d5ca3806d02e26f9f3fa92ff567f0805eac4c by Erlend Egeberg Aasland in branch 'main': bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231) https://github.com/python/cpython/commit/c78d5ca3806d02e26f9f3fa92ff567

[issue45126] [sqlite3] cleanup and harden Connection and Cursor __init__

2021-09-12 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset aa6dd54d43dffbdf883c083e361f6ccf8642d66e by Erlend Egeberg Aasland in branch '3.10': [3.10] bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231). (GH-28298) https://github.com/python/cpyt

[issue45211] Useful (expensive) information is discarded in getpath.c.

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

[issue45256] Remove the usage of the cstack in Python to Python calls

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

[issue45261] Unreliable (?) results from timeit (cache issue?)

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

[issue45213] Frozen modules are looked up using a linear search.

2021-09-22 Thread Dong-hee Na
Dong-hee Na added the comment: I thought about the Trie implementation for this case. But as Eric said, it can be overkilling for this time. -- nosy: +corona10 ___ Python tracker <https://bugs.python.org/issue45

[issue45213] Frozen modules are looked up using a linear search.

2021-09-24 Thread Dong-hee Na
Dong-hee Na added the comment: > Then we can at least bail out of the loop early, and one day someone could > make it a binary search. I like this idea if we can guarantee the order :) -- ___ Python tracker <https://bugs.python.org/i

[issue45272] 'os.path' should not be a frozen module

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

[issue45218] cmath.log has an invalid signature

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

[issue45289] test_dbm and test_dbm_ndbm segfaults in M1 Mac

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

[issue45319] Possible regression in __annotations__ descr for heap type subclasses

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

[issue45316] [C API] Functions not exported with PyAPI_FUNC()

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

[issue45295] Speed up classmethod calls via LOAD_METHOD

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

[issue45326] Unexpected TypeError with type alias+issubclass+ABC

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

[issue45326] Unexpected TypeError with type alias+issubclass+ABC

2021-09-29 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +gvanrossum ___ Python tracker <https://bugs.python.org/issue45326> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45326] Unexpected TypeError with type alias+issubclass+ABC

2021-09-29 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.10, Python 3.11 ___ Python tracker <https://bugs.python.org/issue45326> ___ ___ Python-bugs-list mailing list Unsub

[issue45332] Decimal test and benchmark are broken

2021-10-01 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch nosy: +corona10 nosy_count: 3.0 -> 4.0 pull_requests: +27043 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28680 ___ Python tracker <https://bugs.python.org/i

[issue45332] Decimal test and benchmark are broken

2021-10-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 9eed75fde226cec5a02301cfac1dc8039b5a183e by Dong-hee Na in branch 'main': bpo-45332: Fix broken Decimal test and benchmark (GH-28680) https://github.com/python/cpython/commit/9eed75fde226cec5a02301cfac1dc8

[issue45332] Decimal test and benchmark are broken

2021-10-01 Thread Dong-hee Na
Dong-hee Na added the comment: Now the code is fixed. Thanks Serhiy for the report and review :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45340] Lazily create dictionaries for plain Python objects

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

[issue45321] Module xml.parsers.expat.errors misses error code constants of libexpat >=2.0

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

[issue18712] Pure Python operator.index doesn't match the C version.

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

[issue45077] multiprocessing.Pool(64) crashes on Windows

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

[issue45335] Default TIMESTAMP converter in sqlite3 ignores time zone

2021-10-03 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10, erlendaasland ___ Python tracker <https://bugs.python.org/issue45335> ___ ___ Python-bugs-list mailing list Unsub

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

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

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

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

[issue45356] Calling `help` executes @classmethod @property decorated methods

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

[issue45362] dis does not work with the new optimized ops

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

[issue45362] dis does not work with the new optimized ops

2021-10-04 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +Mark.Shannon, kj ___ Python tracker <https://bugs.python.org/issue45362> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45385] Fix possible reference leak from descr_check

2021-10-05 Thread Dong-hee Na
New submission from Dong-hee Na : Report from @kj: https://github.com/python/cpython/pull/28719#discussion_r721249643 -- components: Interpreter Core messages: 403282 nosy: corona10, kj, vstinner priority: normal severity: normal status: open title: Fix possible reference leak from

[issue45385] Fix possible reference leak from descr_check

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

[issue45385] Fix possible reference leak from descr_check

2021-10-06 Thread Dong-hee Na
Dong-hee Na added the comment: Compiler warnings from PR 28572: Objects/descrobject.c#L183 ‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized] Objects/descrobject.c#L201 ‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized] Objects/descrobject.c#L217

[issue45385] Fix reference leak from descr_check

2021-10-06 Thread Dong-hee Na
Change by Dong-hee Na : -- title: Fix possible reference leak from descr_check -> Fix reference leak from descr_check ___ Python tracker <https://bugs.python.org/issu

[issue45385] Fix reference leak from descr_check

2021-10-06 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset e6ff4eba6da9b64aed235ba8d730b5645f71955c by Dong-hee Na in branch 'main': bpo-45385: Fix reference leak from descr_check (#28719) https://github.com/python/cpython/commit/e6ff4eba6da9b64aed235ba8d730b5

[issue45385] Fix reference leak from descr_check

2021-10-06 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +27114 pull_request: https://github.com/python/cpython/pull/28780 ___ Python tracker <https://bugs.python.org/issue45

[issue45385] Fix reference leak from descr_check

2021-10-06 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 660718dba57624720c2a9832f10f29ace59c77cf by Dong-hee Na in branch '3.9': [3.9] bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28780) https://github.com/python/cpython/commit/660718dba57624720c2a9832f10f29

[issue45385] Fix reference leak from descr_check

2021-10-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

[issue45385] Fix reference leak from descr_check

2021-10-07 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 35d4857375b6ef8f1243db4da9c2cba0bee63ad6 by Miss Islington (bot) in branch '3.10': bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28779) https://github.com/python/cpython/commit/35d4857375b6ef8f1243db4da9c2cb

[issue45407] Support buffer protocol for _struct.Struct format argument

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

[issue45407] Support buffer protocol for _struct.Struct format argument

2021-10-07 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 9f7a94fd66e05ae040a67e32c397091fe5939ced by Jeong YunWon in branch 'main': bpo-45407: Remove outdated XXX comment from Struct___init___impl (GH-28805) https://github.com/python/cpython/commit/9f7a94fd66e05ae040a67e32c39709

[issue45407] Support buffer protocol for _struct.Struct format argument

2021-10-07 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue45407> ___ ___

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 34bbc87b2ddbaf245fbed6443c3e620f80c6a843 by Dong-hee Na in branch 'main': bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705) https://github.com/python/cpython/commit/34bbc87b2ddbaf245fbed6443c3e62

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +27148 pull_request: https://github.com/python/cpython/pull/28832 ___ Python tracker <https://bugs.python.org/issue20

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ec04db74e24a5f5da441bcabbe259157b4938b9b by Dong-hee Na in branch 'main': bpo-20028: Keep original exception when PyUnicode_GetLength return -1 (GH-28832) https://github.com/python/cpython/commit/ec04db74e24a5f5da441bcabbe2591

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +27149 pull_request: https://github.com/python/cpython/pull/28833 ___ Python tracker <https://bugs.python.org/issue20

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +27150 pull_request: https://github.com/python/cpython/pull/28834 ___ Python tracker <https://bugs.python.org/issue20

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +27151 pull_request: https://github.com/python/cpython/pull/28835 ___ Python tracker <https://bugs.python.org/issue20

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c80f0b7aa1d90332d0069d3e85ee112d0c9da7f0 by Dong-hee Na in branch '3.10': [3.10] bpo-20028: Keep original exception when PyUnicode_GetLength return -1 (GH-28832) (GH-28834) https://github.com/python/cpyt

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-09 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset e4fcb6fd3dcc4db23867c2fbd538189b8f221225 by Dong-hee Na in branch '3.9': [3.9] bpo-20028: Keep original exception when PyUnicode_GetLength return -1 (GH-28832) (GH-28835) https://github.com/python/cpyt

[issue45416] "loop argument must agree with lock" instantiating asyncio.Condition

2021-10-10 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue45416> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-11 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ab62051152cb24470056ffaeb9107c8b4311375e by Dong-hee Na in branch 'main': bpo-20028: Empty escapechar/quotechar is not allowed for csv.Dialect (GH-28833) https://github.com/python/cpython/commit/ab62051152cb24470056ffaeb9107c

[issue20028] csv: Confusing error message when giving invalid quotechar in initializing dialect

2021-10-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

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