[issue42548] debugger stops at breakpoint of `pass` that is not actually reached

2022-02-07 Thread Irit Katriel
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

[issue12029] Allow catching virtual subclasses in except clauses

2022-02-07 Thread Irit Katriel
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.

[issue46282] return value of builtins is not clearly indicated

2022-02-08 Thread Irit Katriel
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

[issue12029] [doc] clarify that except does not match virtual subclasses of the specified exception type

2022-02-08 Thread Irit Katriel
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,

[issue46717] Raising exception multiple times leaks memory

2022-02-11 Thread Irit Katriel
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 _

[issue46729] Better str() for BaseExceptionGroup

2022-02-12 Thread Irit Katriel
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

[issue46729] Better str() for BaseExceptionGroup

2022-02-12 Thread Irit Katriel
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

[issue20923] [doc] Explain ConfigParser 'valid section name' and .SECTCRE

2022-02-14 Thread Irit Katriel
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

[issue46771] Add some form of cancel scopes

2022-02-16 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +ajoino ___ Python tracker <https://bugs.python.org/issue46771> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46801] test_typing emits deprecation warnings

2022-02-19 Thread Irit Katriel
New submission from Irit Katriel : == ERROR: test_typeddict_create_errors (test.test_typing.TypedDictTests) -- Traceback (most recent call last): File

[issue46801] test_typing emits deprecation warnings

2022-02-19 Thread Irit Katriel
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

[issue46801] test_typing emits deprecation warnings

2022-02-19 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46808] remove NEXT_BLOCK() from compile.c

2022-02-20 Thread Irit Katriel
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.

[issue46808] remove NEXT_BLOCK() from compile.c

2022-02-20 Thread Irit Katriel
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

[issue46808] remove NEXT_BLOCK() from compile.c

2022-02-20 Thread Irit Katriel
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

[issue36557] [doc] Clarify the meaning of /uninstall in windows cli

2022-02-22 Thread Irit Katriel
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

[issue36557] [doc] Clarify the meaning of /uninstall in windows cli

2022-02-22 Thread Irit Katriel
Irit Katriel added the comment: Thank you @slateny. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue20923] [doc] Explain ConfigParser 'valid section name' and .SECTCRE

2022-02-22 Thread Irit Katriel
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

[issue46717] Raising exception multiple times leaks memory

2022-02-22 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue46717> ___ ___ Python-bugs-list

[issue43545] Use LOAD_GLOBAL to set __module__ in class def

2022-02-22 Thread Irit Katriel
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

[issue46729] Better str() for BaseExceptionGroup

2022-02-22 Thread Irit Katriel
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

[issue46729] Better str() for BaseExceptionGroup

2022-02-22 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue20923] [doc] Explain ConfigParser 'valid section name' and .SECTCRE

2022-02-22 Thread Irit Katriel
Irit Katriel added the comment: Thank you @vidhya! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue3539] Problem with testembed make dependencies in certain circumstances

2022-02-24 Thread Irit Katriel
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

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread Irit Katriel
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

[issue34429] [doc] On Windows tempfile.TemporaryFile behaves like NamedTemporaryFile

2022-02-25 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue26175] Fully implement IOBase abstract on SpooledTemporaryFile

2022-02-28 Thread Irit Katriel
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

[issue46808] remove NEXT_BLOCK() from compile.c

2022-02-28 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour

2022-03-01 Thread Irit Katriel
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

[issue20970] [doc] contradictory documentation for prog option of argparse

2022-03-01 Thread Irit Katriel
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

[issue15002] urllib2 does not download 4 MB file completely using ftp

2022-03-01 Thread Irit Katriel
Irit Katriel added the comment: 2.7 backport is no longer relevant. -- nosy: +iritkatriel status: open -> closed ___ Python tracker <https://bugs.python.org/issu

[issue10515] csv sniffer does not recognize quotes at the end of line

2022-03-01 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> csv.Sniffer.sniff() regex error ___ Python tracker <https://bugs.python

[issue45492] stdlib inspect documentation on code.co_names is incorrect

2022-03-02 Thread Irit Katriel
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

[issue45492] stdlib inspect documentation on code.co_names is incorrect

2022-03-02 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +29765 pull_request: https://github.com/python/cpython/pull/31645 ___ Python tracker <https://bugs.python.org/issue45

[issue45492] stdlib inspect documentation on code.co_names is incorrect

2022-03-02 Thread Irit Katriel
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

[issue45492] stdlib inspect documentation on code.co_names is incorrect

2022-03-02 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.9 ___ Python tracker <https://bugs.python.or

[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour

2022-03-03 Thread Irit Katriel
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

[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour

2022-03-03 Thread Irit Katriel
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

[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour

2022-03-03 Thread Irit Katriel
Irit Katriel added the comment: Thank you @vidhya. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.o

[issue25415] [io doc] Reword "there is no public constructor"

2022-03-03 Thread Irit Katriel
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

[issue11352] Update cgi module doc

2022-03-05 Thread Irit Katriel
Change by Irit Katriel : -- priority: high -> normal ___ Python tracker <https://bugs.python.org/issue11352> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue34810] Maximum and minimum value of C types integers from Python

2022-03-06 Thread Irit Katriel
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

[issue46912] Full gc collection blocked from collecting after some amount of objects in oldest gen

2022-03-06 Thread Irit Katriel
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

[issue46949] Print an indication if traceback exceeds sys.tracebacklimit

2022-03-07 Thread Irit Katriel
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

[issue29251] [doc] Class __dict__ is only a mapping proxy

2022-03-08 Thread Irit Katriel
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

[issue46291] [doc] First argument to raise can also be BaseException

2022-03-08 Thread Irit Katriel
Irit Katriel added the comment: @gtitze - are you still planning to work on this? -- ___ Python tracker <https://bugs.python.org/issue46291> ___ ___ Python-bug

[issue24959] unittest swallows part of stack trace when raising AssertionError in a TestCase

2022-03-08 Thread Irit Katriel
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

[issue24959] unittest swallows part of stack trace when raising AssertionError in a TestCase

2022-03-08 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +29883 pull_request: https://github.com/python/cpython/pull/31776 ___ Python tracker <https://bugs.python.org/issue24

[issue24959] unittest swallows part of stack trace when raising AssertionError in a TestCase

2022-03-08 Thread Irit Katriel
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

[issue24959] unittest swallows part of stack trace when raising AssertionError in a TestCase

2022-03-08 Thread Irit Katriel
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

[issue46943] fix[imaplib]: call Exception with string instance

2022-03-09 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue46943> ___ ___ Python-bugs-list mailing list Unsub

[issue46954] Awaiting multiple times on same task increases memory usage unboundedly

2022-03-09 Thread Irit Katriel
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

[issue45924] Incorrect traceback when future's exception is raised multiple times

2022-03-09 Thread Irit Katriel
Irit Katriel added the comment: Closed issue46954 as a duplicate of this. -- ___ Python tracker <https://bugs.python.org/issue45924> ___ ___ Python-bugs-list m

[issue46943] fix[imaplib]: call Exception with string instance

2022-03-11 Thread Irit Katriel
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

[issue46943] fix[imaplib]: call Exception with string instance

2022-03-11 Thread Irit Katriel
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

[issue46943] fix[imaplib]: call Exception with string instance

2022-03-11 Thread Irit Katriel
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

[issue23743] Python crashes upon exit if importing g++ compiled mod after importing gcc compiled mod

2022-03-13 Thread Irit Katriel
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

[issue12516] imghdr.what should take one argument

2022-03-13 Thread Irit Katriel
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:

[issue28591] imghdr doesn't recognize some jpeg formats

2022-03-13 Thread Irit Katriel
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

[issue12516] imghdr.what should take one argument

2022-03-13 Thread Irit Katriel
Change by Irit Katriel : -- resolution: rejected -> wont fix ___ Python tracker <https://bugs.python.org/issue12516> ___ ___ Python-bugs-list mailing list Un

[issue21574] Port image types detections from PIL to the imghdr module

2022-03-13 Thread Irit Katriel
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

[issue27121] imghdr does not support jpg files with Lavc bytes

2022-03-13 Thread Irit Katriel
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

[issue26337] Bypass imghdr module determines the type of image

2022-03-13 Thread Irit Katriel
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

[issue43194] Add JFXX as jpeg marker in imghdr module

2022-03-13 Thread Irit Katriel
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

[issue6497] Support for digital Cinema/film DPX and Kodak Cineon image file formats in imghdr module

2022-03-13 Thread Irit Katriel
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

[issue42916] Support for DICOM image file format in imghdr module

2022-03-13 Thread Irit Katriel
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

[issue9544] [doc] xdrlib.Packer().pack_fstring throws a TypeError when called with a str()

2022-03-13 Thread Irit Katriel
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

[issue34165] uu.decode() raises binascii.Error instead of uu.Error on invalid data

2022-03-13 Thread Irit Katriel
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

[issue18979] Use argparse in the uu module

2022-03-13 Thread Irit Katriel
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

[issue11352] Update cgi module doc

2022-03-13 Thread Irit Katriel
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:

[issue34129] CGITB does not mangle variables names

2022-03-13 Thread Irit Katriel
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 ___

[issue32669] cgitb file to print OSError exceptions

2022-03-13 Thread Irit Katriel
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

[issue1047397] cgitb failures

2022-03-13 Thread Irit Katriel
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 ___

[issue33507] Improving the html rendered by cgitb.html

2022-03-13 Thread Irit Katriel
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 ___

[issue15749] cgitb prints html for text when display disabled.

2022-03-13 Thread Irit Katriel
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 ___

[issue1178136] cgitb.py support for frozen images

2022-03-13 Thread Irit Katriel
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

[issue12026] Support more of MSI api

2022-03-13 Thread Irit Katriel
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

[issue12201] Returning FILETIME is unsupported in msilib.SummaryInformation.GetProperty()

2022-03-13 Thread Irit Katriel
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

[issue8526] msilib doesn't support multiple CAB instances in same installer

2022-03-13 Thread Irit Katriel
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

[issue8934] aifc should use str instead of bytes (wave, sunau compatibility)

2022-03-13 Thread Irit Katriel
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:

[issue13681] Aifc read compressed frames fix

2022-03-13 Thread Irit Katriel
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:

[issue22094] oss_audio_device.write(data) produces short writes

2022-03-13 Thread Irit Katriel
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

[issue32007] deprecate the nis module

2022-03-13 Thread Irit Katriel
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

[issue2148] nis module not supporting group aliases

2022-03-13 Thread Irit Katriel
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:

[issue12506] NIS module cant handle multiple NIS map entries for the same GID

2022-03-13 Thread Irit Katriel
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:

[issue40735] test_nntplib depends on unreliable external servers

2022-03-13 Thread Irit Katriel
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

[issue1186900] nntplib shouldn't raise generic EOFError

2022-03-13 Thread Irit Katriel
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

[issue46967] Type union for except

2022-03-13 Thread Irit Katriel
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

[issue42548] debugger stops at breakpoint of `pass` that is not actually reached

2022-03-13 Thread Irit Katriel
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

[issue45711] Simplify the interpreter's (type, val, tb) exception representation

2022-03-13 Thread Irit Katriel
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

[issue45744] Fix Flawfinder C Errors

2022-03-13 Thread Irit Katriel
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

[issue2604] doctest.DocTestCase fails when run repeatedly

2022-03-13 Thread Irit Katriel
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).

[issue18820] json.dump() ignores its 'default' option when serializing dictionary keys

2022-03-13 Thread Irit Katriel
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

[issue39829] __len__ called twice in the list() constructor

2022-03-13 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.8 ___ Python tracker <https://bugs.python.org/issue39829> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30677] [doc] mention that os.mkdir() raises FileNotFound if path does not exist

2022-03-14 Thread Irit Katriel
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

[issue30677] [doc] mention that os.mkdir() raises FileNotFound if path does not exist

2022-03-14 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue43721] Documentation of property.{getter, setter, deleter} fails to mention that a *new* property is returned

2022-03-14 Thread Irit Katriel
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

[issue24224] test_msilib is inadequate

2022-03-15 Thread Irit Katriel
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:

[issue43863] [Windows] test_distutils logs: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead

2022-03-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> test_distutils emits deprecation warning about distutils ___ Python tracker <https://bugs.python

[issue46884] [doc] msilib.rst uses data directive to document modules

2022-03-15 Thread Irit Katriel
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

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