Irit Katriel added the comment:
Fine, I’ll reopen it for 3.9. However, realistically the release managers are
unlikely to investigate how this bug got fixed between 3.9 and 3.11 so if you
think this is important you might want to do that work.
--
resolution: out of date ->
sta
Irit Katriel added the comment:
To summarise the discussion so far:
The arguments in favour of changing exception matching to match on virtual base
classes are:
1. It is confusing that it doesn't follow issubclass semantics.
2. Two use cases were presented as practical motivation.
Irit Katriel added the comment:
I should have said "redundant information" rather than "obvious".
I consider it redundant to specify that the default behavior applies to some
specific case. If I read redundant information I may pause to think why it was
necessary to
Change by Irit Katriel :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
title: Allow catching virtual subclasses in except clauses -> [doc] clarify
that except does not match virtual subclasses of the specified exception type
versions: +Python 3.10,
Irit Katriel added the comment:
"raise exc" adds the current frame to the traceback of exc. If you want to
clear the previous traceback before raising you can do that with
raise exc.with_traceback(None)
--
resolution: -> not a bug
_
New submission from Irit Katriel :
The str() of exception groups currently contains just the msg as passed to the
constructor. This turned out to be confusing (see
https://github.com/python/cpython/pull/31270#issuecomment-1036418346).
We should consider whether it is possible to design a
Change by Irit Katriel :
--
keywords: +patch
pull_requests: +29453
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/31294
___
Python tracker
<https://bugs.python.org/issu
Irit Katriel added the comment:
It’s still open. Go for it.
--
___
Python tracker
<https://bugs.python.org/issue20923>
___
___
Python-bugs-list mailing list
Unsub
Change by Irit Katriel :
--
nosy: +ajoino
___
Python tracker
<https://bugs.python.org/issue46771>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Irit Katriel :
==
ERROR: test_typeddict_create_errors (test.test_typing.TypedDictTests)
--
Traceback (most recent call last):
File
Change by Irit Katriel :
--
keywords: +patch
pull_requests: +29568
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/31433
___
Python tracker
<https://bugs.python.org/issu
Change by Irit Katriel :
--
resolution: -> duplicate
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
New submission from Irit Katriel :
The compiler currently requires the code-generation functions to explicitly
specify where basic blocks end, with a NEXT_BLOCK().
If you get that wrong, you get an exception about "malformed control flow
graph" later, in the cfg analysis stage.
Change by Irit Katriel :
--
keywords: +patch
pull_requests: +29576
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/31448
___
Python tracker
<https://bugs.python.org/issu
Irit Katriel added the comment:
The patch in PR31448 delays the creation of an implicit block to when it is
needed (do if we begin using another block before a new instruction is added,
the implicit block is never created).
I counted how many empty blocks are being detected by the
Irit Katriel added the comment:
New changeset 9a0d941df4c3e1efb8b3017cd2c2de17e582fd5c by slateny in branch
'main':
bpo-36557: Updated wording for using/windows (GH-31457)
https://github.com/python/cpython/commit/9a0d941df4c3e1efb8b3017cd2c2de
Irit Katriel added the comment:
Thank you @slateny.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
New changeset bba8008f99d615a02984422a3825082bb5621f5a by vidhya in branch
'main':
bpo-20923 : [doc] Explain ConfigParser 'valid section name' and .SECTCRE
(GH-31413)
https://github.com/python/cpython/commit/bba8008f99d615a02984
Change by Irit Katriel :
--
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue46717>
___
___
Python-bugs-list
Irit Katriel added the comment:
Please reopen or create and new issue if this is still relevant and you can
provide more information.
--
stage: -> resolved
status: pending -> closed
___
Python tracker
<https://bugs.python.org/i
Irit Katriel added the comment:
New changeset 38b5acf8673ce42a401263a2528202e44d6ae60a by Irit Katriel in
branch 'main':
bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup
(GH-31294)
https://github.com/python/cpython/commit/38b5acf8673ce42a401263a2528202
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
Thank you @vidhya!
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
Closing as suggested by Martin.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.o
Irit Katriel added the comment:
New changeset 53ecf9e08d35801807daf74492c090a325f995b7 by slateny in branch
'main':
bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems
(GH-31547)
https://github.com/python/cpython/commit/53ecf9e08d35801807daf74492c090
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
> Irit, you just patched Temp file doc, can you look at the PR code?
I don't consider myself and expert here, but I left a comment on PR29560 just
to be a good sport.
--
___
Python tracker
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
Vidhya, I think the sentence you are suggesting to add would overlap with one
which is already there ("Since exit() ultimately “only” raises an exception, it
will only exit the process when called from the main thread, and the exception
is not interc
Irit Katriel added the comment:
@lilbludot - is this your GitHub account? https://github.com/lilbludot
(I am asking in order to credit you as coauthor on the GitHub version of your
patch).
--
nosy: +iritkatriel
___
Python tracker
<ht
Irit Katriel added the comment:
2.7 backport is no longer relevant.
--
nosy: +iritkatriel
status: open -> closed
___
Python tracker
<https://bugs.python.org/issu
Change by Irit Katriel :
--
resolution: -> duplicate
stage: patch review -> resolved
status: open -> closed
superseder: -> csv.Sniffer.sniff() regex error
___
Python tracker
<https://bugs.python
Irit Katriel added the comment:
New changeset 3257d49d236e5f3453fe9d2fd8338bcdfe9756b7 by slateny in branch
'main':
bpo-45492: Corrected documentation for co_names in inspect library doc
(GH-31456)
https://github.com/python/cpython/commit/3257d49d236e5f3453fe9d2fd8338b
Change by Irit Katriel :
--
pull_requests: +29765
pull_request: https://github.com/python/cpython/pull/31645
___
Python tracker
<https://bugs.python.org/issue45
Irit Katriel added the comment:
New changeset eb65e46b9b28103767c115ccf71a97a9f4237d4c by Irit Katriel in
branch '3.10':
[3.10] bpo-45492: Corrected documentation for co_names in inspect library doc
(GH-31456). (GH-31645)
https://github.com/python/cpyt
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: -Python 3.9
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
New changeset 10117f1d8cb49ce95493555c06050faf636ccee7 by vidhya in branch
'main':
bpo-6634: [doc] clarify that sys.exit() does not always exit the interpreter
(GH-31639)
https://github.com/python/cpython/commit/10117f1d8cb49ce95493555c06050f
Irit Katriel added the comment:
New changeset 09819863a3fb7092ca5cbdfcb722882ebbac806b by Miss Islington (bot)
in branch '3.9':
bpo-6634: [doc] clarify that sys.exit() does not always exit the interpreter
(GH-31639) (GH-31661)
https://github.com/python/cpyt
Irit Katriel added the comment:
Thank you @vidhya.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.o
Irit Katriel added the comment:
> I think that the fix should be to delete the original incorrect statement and
> not replace it with another incorrect statement.
I agree with this.
--
___
Python tracker
<https://bugs.python.org/i
Change by Irit Katriel :
--
priority: high -> normal
___
Python tracker
<https://bugs.python.org/issue11352>
___
___
Python-bugs-list mailing list
Unsubscrib
Irit Katriel added the comment:
Closing because there was no reply to questions asking to clarify the use case.
Please reopen if you would like to continue the discussion.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -&g
Irit Katriel added the comment:
See if you can write a script that makes this happen.
--
nosy: +iritkatriel
___
Python tracker
<https://bugs.python.org/issue46
Irit Katriel added the comment:
Re what the limit means, it’s a bit messier than that, see issue38197.
--
___
Python tracker
<https://bugs.python.org/issue46
Irit Katriel added the comment:
Thank you Stanley, I agree that this is no longer needed.
--
resolution: -> out of date
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
@gtitze - are you still planning to work on this?
--
___
Python tracker
<https://bugs.python.org/issue46291>
___
___
Python-bug
Irit Katriel added the comment:
New changeset 88b7d86a73da9388aa65c96401c2984c8c16f8db by Irit Katriel in
branch 'main':
bpo-24959: fix unittest.assertRaises bug where traceback entries are dropped
from chained exceptions (GH-23688)
https://github.com/python/cpyt
Change by Irit Katriel :
--
pull_requests: +29883
pull_request: https://github.com/python/cpython/pull/31776
___
Python tracker
<https://bugs.python.org/issue24
Irit Katriel added the comment:
New changeset f3ea249569bbce8417c55d421521bb672c202552 by Irit Katriel in
branch '3.9':
bpo-24959: fix unittest.assertRaises bug where traceback entries are dropped
from chained exceptions (GH-23688) (GH-31776)
https://github.com/python/cpyt
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.11 -Python 3.8
___
Python tracker
<https://bugs.python.or
Change by Irit Katriel :
--
versions: -Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue46943>
___
___
Python-bugs-list mailing list
Unsub
Irit Katriel added the comment:
This is a duplicate of bpo-45924. The traceback accumulates another frame
every time the exception is raised. To see that, change main in your script to
async def main():
task = asyncio.create_task(task_that_raise())
while True:
try
Irit Katriel added the comment:
Closed issue46954 as a duplicate of this.
--
___
Python tracker
<https://bugs.python.org/issue45924>
___
___
Python-bugs-list m
Irit Katriel added the comment:
@spaceone I'd suggest you create a new PR. Once many people are subscribed to
a PR we don't like to reopen it and spam everyone.
It would also be necessary to add a unit test.
--
nosy: +iritkatriel
Irit Katriel added the comment:
The people subscribed to the closed pr will not receive an email about a new pr
which is opened correctly. What makes you think they would?
--
___
Python tracker
<https://bugs.python.org/issue46
Irit Katriel added the comment:
That happened because your PR was wrong - it contained many commits that
touched many files, all of whose owners were modified. If you make the PR
against the main branch, the diff will not have all those files a and they will
not be notified
Irit Katriel added the comment:
IIUC:
(1) 2.7 is well past its EOL date, so it's not clear whether this issue is
still there.
(2) mingw is not supported and distutils is deprecated, so it's not clear if
it's relevant.
(3) it was, to begin with, a documentation issue and i
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be more enhancements to it.
--
nosy: +iritkatriel
resolution: -> rejected
stage: -> resolved
status: open -> closed
___
Python tracker
<https:
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Change by Irit Katriel :
--
resolution: rejected -> wont fix
___
Python tracker
<https://bugs.python.org/issue12516>
___
___
Python-bugs-list mailing list
Un
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: test needed -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: test needed -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
imghdr is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
xdrlib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: needs patch -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
uu is deprecated as per PEP 594, so there won't be further enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
uu is deprecated as per PEP 594, so there won't be further enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
cgi is deprecated as per PEP 594, so there won't be further enhancements to it.
--
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https:
Irit Katriel added the comment:
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements
to them.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Irit Katriel added the comment:
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements
to them.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements
to them.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Irit Katriel added the comment:
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements
to them.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Irit Katriel added the comment:
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements
to them.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Irit Katriel added the comment:
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements
to them.
--
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
msilib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
msilib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
msilib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
aifc is deprecated as per PEP 594, so there won't be further enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python tracker
<https:
Irit Katriel added the comment:
aifc is deprecated as per PEP 594, so there won't be further enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python tracker
<https:
Irit Katriel added the comment:
ossaudiodev is deprecated as per PEP 594, so there won't be further
enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
is deprecated as per PEP 594, so there is no need for a separate issue for it.
--
nosy: +iritkatriel
resolution: -> duplicate
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bug
Irit Katriel added the comment:
nis is deprecated as per PEP 594, so there won't be further enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python tracker
<https:
Irit Katriel added the comment:
nis is deprecated as per PEP 594, so there won't be further enhancements to it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python tracker
<https:
Irit Katriel added the comment:
nntplib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.pyth
Irit Katriel added the comment:
nntplib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python t
Irit Katriel added the comment:
> I don't think that `except A|B` looks better than `except (A, B)`
I agree.
--
resolution: -> rejected
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.p
Irit Katriel added the comment:
On second thought I won't keep this open till it expires.
This is a low priority bug which no longer exists in new versions because it
was fixed by accident due to another change. I don't believe anyone would care
enough about this to investig
Irit Katriel added the comment:
We have agreed on python-dev [1] that the cpython changes will not be reverted,
and the issue will be fixed in cython. So I am closing this again.
[1]
https://mail.python.org/archives/list/python-...@python.org/message/BHIQL4P6F7OPMCAP6U24XEZUPQKI62UT
Irit Katriel added the comment:
There is not enough information in this report.
--
resolution: -> rejected
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
I've reproduced this on 3.11 as well.
The patch here needs to be converted to a GitHub PR and then tested and
reviewed.
The patch on issue9736 has a unit test as well, which should be included
(because the pjd's patch doesn't have one).
Irit Katriel added the comment:
Reproduced on 3.11.
--
nosy: +iritkatriel
versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue18
Change by Irit Katriel :
--
versions: -Python 3.8
___
Python tracker
<https://bugs.python.org/issue39829>
___
___
Python-bugs-list mailing list
Unsubscribe:
Irit Katriel added the comment:
New changeset 879fbd9472753149b627f32add3ddca90ac47ab7 by slateny in branch
'main':
bpo-30677: [doc] mention that os.mkdir() can raise FileNotFoundError (GH-31548)
https://github.com/python/cpython/commit/879fbd9472753149b627f32add3ddc
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Irit Katriel added the comment:
New changeset e3d348a5252549708fd19338b675a2c23b60d677 by Irit Katriel in
branch 'main':
bpo-43721: Fix docstrings for property.getter/setter/deleter (GH-31046)
https://github.com/python/cpython/commit/e3d348a5252549708fd19338b675a2
Irit Katriel added the comment:
msilib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
resolution: -> wont fix
stage: needs patch -> resolved
status: open -> closed
___
Python tracker
<https:
Change by Irit Katriel :
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> test_distutils emits deprecation warning about distutils
___
Python tracker
<https://bugs.python
Irit Katriel added the comment:
msilib is deprecated as per PEP 594, so there won't be further enhancements to
it.
--
nosy: +iritkatriel
resolution: -> wont fix
stage: patch review -> resolved
status: open -> closed
___
Python t
701 - 800 of 3640 matches
Mail list logo