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
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
Change by Dong-hee Na :
--
pull_requests: +26243
pull_request: https://github.com/python/cpython/pull/27767
___
Python tracker
<https://bugs.python.org/issue44
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
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
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
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
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
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue24234>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
@guido
>>> issubclass(bytes, typing.SupportsBytes)
False
IMHO, supporting is reasonable.
--
___
Python tracker
<https://bugs.python.or
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
Change by Dong-hee Na :
--
pull_requests: +26359
pull_request: https://github.com/python/cpython/pull/27901
___
Python tracker
<https://bugs.python.org/issue24
Change by Dong-hee Na :
--
pull_requests: -26358
___
Python tracker
<https://bugs.python.org/issue34234>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45000>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Dong-hee Na :
--
versions: +Python 3.11
___
Python tracker
<https://bugs.python.org/issue45000>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
pull_requests: +26402
pull_request: https://github.com/python/cpython/pull/27956
___
Python tracker
<https://bugs.python.org/issue45
Change by Dong-hee Na :
--
pull_requests: +26403
pull_request: https://github.com/python/cpython/pull/27957
___
Python tracker
<https://bugs.python.org/issue45
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
Change by Dong-hee Na :
--
pull_requests: +26404
pull_request: https://github.com/python/cpython/pull/27958
___
Python tracker
<https://bugs.python.org/issue45
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
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
Change by Dong-hee Na :
--
nosy: +brandtbucher
___
Python tracker
<https://bugs.python.org/issue45045>
___
___
Python-bugs-list mailing list
Unsubscribe:
Dong-hee Na added the comment:
With Ken Jin's suggestion
+---++--+
| Benchmark | base | PR 28043 |
+===++==+
| bench pattern | 482 ns | 373 ns: 1.29x f
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
Change by Dong-hee Na :
--
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue45045>
___
___
Pyth
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
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45056>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45054>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Dong-hee Na :
--
pull_requests: +26583
pull_request: https://github.com/python/cpython/pull/28144
___
Python tracker
<https://bugs.python.org/issue42
Change by Dong-hee Na :
--
pull_requests: +26584
pull_request: https://github.com/python/cpython/pull/28145
___
Python tracker
<https://bugs.python.org/issue42
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45034>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45122>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Dong-hee Na :
--
Removed message: https://bugs.python.org/msg401202
___
Python tracker
<https://bugs.python.org/issue45115>
___
___
Python-bugs-list m
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
Change by Dong-hee Na :
--
pull_requests: +26649
pull_request: https://github.com/python/cpython/pull/28229
___
Python tracker
<https://bugs.python.org/issue44
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue44987>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Dong-hee Na :
--
pull_requests: +26709
pull_request: https://github.com/python/cpython/pull/28293
___
Python tracker
<https://bugs.python.org/issue44
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
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
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45211>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45256>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45261>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45272>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45218>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45289>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45319>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45316>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45295>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45326>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +gvanrossum
___
Python tracker
<https://bugs.python.org/issue45326>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45340>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45321>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue18712>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45077>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10, erlendaasland
___
Python tracker
<https://bugs.python.org/issue45335>
___
___
Python-bugs-list mailing list
Unsub
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue20028>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45356>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45362>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Dong-hee Na :
--
nosy: +Mark.Shannon, kj
___
Python tracker
<https://bugs.python.org/issue45362>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
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
Change by Dong-hee Na :
--
pull_requests: +27114
pull_request: https://github.com/python/cpython/pull/28780
___
Python tracker
<https://bugs.python.org/issue45
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
Change by Dong-hee Na :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
Change by Dong-hee Na :
--
nosy: +corona10
___
Python tracker
<https://bugs.python.org/issue45407>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Dong-hee Na :
--
resolution: -> rejected
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue45407>
___
___
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
Change by Dong-hee Na :
--
pull_requests: +27148
pull_request: https://github.com/python/cpython/pull/28832
___
Python tracker
<https://bugs.python.org/issue20
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
Change by Dong-hee Na :
--
pull_requests: +27149
pull_request: https://github.com/python/cpython/pull/28833
___
Python tracker
<https://bugs.python.org/issue20
Change by Dong-hee Na :
--
pull_requests: +27150
pull_request: https://github.com/python/cpython/pull/28834
___
Python tracker
<https://bugs.python.org/issue20
Change by Dong-hee Na :
--
pull_requests: +27151
pull_request: https://github.com/python/cpython/pull/28835
___
Python tracker
<https://bugs.python.org/issue20
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
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
Change by Dong-hee Na :
--
versions: +Python 3.11
___
Python tracker
<https://bugs.python.org/issue45416>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Dong-hee Na :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
501 - 600 of 1592 matches
Mail list logo