[issue46332] Use raise..from in logging/config instead of assigning __cause__

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

[issue32679] concurrent.futures should store full sys.exc_info()

2022-01-10 Thread Irit Katriel
Irit Katriel added the comment: Following the changes in issue45711, exc_info[2] is exactly the same as exc_info[1].__traceback__, so there is no point in making this change now. -- resolution: -> not a bug stage: -> resolved status: open -&g

[issue46328] add sys.exception()

2022-01-10 Thread Irit Katriel
Irit Katriel added the comment: I thought of something like sys.active_exception() but it seems like a lot to type. sys.exception() was suggested in pep3134. Does this change need a pep? -- ___ Python tracker <https://bugs.python.org/issue46

[issue46328] add sys.exception()

2022-01-10 Thread Irit Katriel
Irit Katriel added the comment: Cool. I just removed the do-not-merge label from the PR and I guess it's ready to be reviewed. -- ___ Python tracker <https://bugs.python.org/is

[issue46336] Sixth element of tuple from __reduce__(), inconsistency between pickle and copy

2022-01-10 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue46336> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46336] Sixth element of tuple from __reduce__(), inconsistency between pickle and copy

2022-01-10 Thread Irit Katriel
Irit Katriel added the comment: I added Serhiy as the author of the deepcopy optimization. Although it was the first to use the 6th item, it is not documented so I wonder if it's the easier of the two to change. -- nosy: +iritkatriel ___ P

[issue23902] let exception react to being raised or the setting of magic properties (like __cause__) within Python

2022-01-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue23902> ___ ___ Python-bugs-list

[issue27257] get_addresses results in traceback with an addrspec with an empty local part.

2022-01-10 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> works for me stage: patch review -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue6942] email.generator.Generator memory consumption

2022-01-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue6942> ___ ___ Python-bugs-list

[issue16482] pdb.set_trace() clobbering traceback on error

2022-01-10 Thread Irit Katriel
Irit Katriel added the comment: iritkatriel@Irits-MBP cpython % cat pdb_traceback.py import pdb x = 0 while True: pdb.set_trace() y = "line of code not triggering an error" x += 1 assert x != 3 iritkatriel@Irits-MBP cpython % cat pdb_traceback.py

[issue7238] frame.f_lineno doesn't get updated after local trace function assigned to it

2022-01-10 Thread Irit Katriel
Irit Katriel added the comment: I am unable to reproduce this on 3.11, I get this: iritkatriel@Irits-MBP cpython % ./python.exe tracer_testcase.py 14 15 16 14 15 16 I am also unable to reproduce the problem in the related issue 16482. -- nosy: +iritkatriel status: open -> pend

[issue46343] Add PyErr_GetActiveException and PyErr_SetActiveException

2022-01-11 Thread Irit Katriel
New submission from Irit Katriel : Following the removal of exc_type and exc_traceback from the interpreter's active exception in issue45711, we can now provide simplified get-set functions in the C Api: PyAPI_FUNC(void) PyErr_GetActiveException(PyObject **); PyAPI_FUNC

[issue46343] Add PyErr_GetActiveException and PyErr_SetActiveException

2022-01-11 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +28733 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30531 ___ Python tracker <https://bugs.python.org/issu

[issue28159] Deprecate isdst argument in email.utils.localtime

2022-01-11 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy versions: +Python 3.11 -Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue28159> ___ ___ Pytho

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

2022-01-11 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: Enhance documentation of os.mkdir() -> [doc] mention that os.mkdir() raises FileNotFound if path does not exist versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python

[issue46344] 3.11: except/else/if/raise traced incorrectly

2022-01-11 Thread Irit Katriel
Irit Katriel added the comment: Thanks, I have a fix and will make a PR once I've written the test. -- ___ Python tracker <https://bugs.python.org/is

[issue46343] Add PyErr_GetActiveException and PyErr_SetActiveException

2022-01-11 Thread Irit Katriel
Irit Katriel added the comment: Yes, you’re right of course ;) -- ___ Python tracker <https://bugs.python.org/issue46343> ___ ___ Python-bugs-list mailin

[issue46344] 3.11: except/else/if/raise traced incorrectly

2022-01-11 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +28742 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30544 ___ Python tracker <https://bugs.python.org/issu

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

2022-01-12 Thread Irit Katriel
Irit Katriel added the comment: This is referring to Doc/using/windows.rst -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +docs@python, iritkatriel title: Python (Launcher)3.7.3 CMDLine install/uninstall -> [doc] Clarify the meaning of /uninst

[issue37422] Documentation on the change of __path__ in Python 3

2022-01-12 Thread Irit Katriel
Irit Katriel added the comment: >From the discussion is seems like there is nothing that needs to be added to >the docs. I will close this in a while if nobody objects. -- nosy: +iritkatriel status: open -> pending ___ Python tracke

[issue37591] test_concurrent_future failed

2022-01-12 Thread Irit Katriel
Irit Katriel added the comment: Thanks for reporting, but 3.7 is no longer maintained so it's unlikely that anyone will investigate this anymore. Please create a new issue if you are seeing this on a current version (>= 3.9). -- nosy: +iritkatriel resolution: -> out of

[issue32996] Improve What's New in 3.7

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

[issue37595] Python 3.7.4 does not build on Raspbian Buster with optimizations

2022-01-12 Thread Irit Katriel
Irit Katriel added the comment: Closed issue38204 as a duplicate of this. I don't know whether the problem still exists in current python versions. -- nosy: +iritkatriel title: Python 3.7.4 does not build on Raspbian Buster -> Python 3.7.4 does not build on Raspbian Bus

[issue38204] Cannot compile on RPi with optimizations

2022-01-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Python 3.7.4 does not build on Raspbian Buster with optimizations ___ Python tracker <https://bugs.python

[issue46363] Two typos in verions 3.7 document translation of zh_CN

2022-01-13 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer maintained. Is this also in newer versions? Can you submit a pull request to fix it in the main branch? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue46

[issue30569] Tutorial section 2.1 has *nix example at 3.7, but Windows at 3.6

2022-01-13 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue30569> ___ ___ Python-bugs-list

[issue46344] 3.11: except/else/if/raise traced incorrectly

2022-01-13 Thread Irit Katriel
Irit Katriel added the comment: New changeset 9c2ebb906d1c68c3d571b100c92ceb08805b94cd by Irit Katriel in branch 'main': bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544) https://github.com/python/cpython/commit/9c2ebb906d1c68c3d571b100c92ceb

[issue46344] 3.11: except/else/if/raise traced incorrectly

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

[issue46328] add sys.exception()

2022-01-13 Thread Irit Katriel
Irit Katriel added the comment: New changeset c590b581bba517f81ced2e6f531ccc9e2e22eab5 by Irit Katriel in branch 'main': bpo-46328: Add sys.exception() (GH-30514) https://github.com/python/cpython/commit/c590b581bba517f81ced2e6f531ccc

[issue46328] add sys.exception()

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

[issue45991] Improve ambiguous docstrings in pkgutil

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue45991> ___ ___ Pytho

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

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue45492> ___ ___ Pytho

[issue32876] HTMLParser raises exception on some inputs

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: The error() method was removed in issue31844. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed superseder: -> HTMLParser: undocumented not implemented method ___ Py

[issue44594] AsyncExitStack.enter_async_context() is mishandling exception __context__

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

[issue38656] [doc] clarify what data the mimetypes.MimeTypes class uses

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- keywords: -patch title: mimetypes for python 3.7.5 fails to detect matroska video -> [doc] clarify what data the mimetypes.MimeTypes class uses versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7 ___ Pyt

[issue44577] Probably defect in Python 3.7.11

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: Python 3,7 is no longer maintained. Please create a new issue if you see this on a current version (>= 3.9) and are able to provide more information. -- nosy: +iritkatriel resolution: -> rejected stage: -> resolved status: open

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

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: Apart from the 3.9 backport this is complete. -- nosy: +iritkatriel, lukasz.langa versions: -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue42

[issue32876] HTMLParser raises exception on some inputs

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: Reopening to discuss what the correct behaviour should be. -- resolution: out of date -> status: closed -> open versions: +Python 3.11 -Python 2.7, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker

[issue39316] settrace skips lines when chaining methods without arguments

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

[issue23183] timeit CLI best of 3: undocumented output format

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: New changeset 73140de97cbeb01bb6c9af1da89ecb9355921e91 by Hugo van Kemenade in branch 'main': bpo-23183: Document the timeit output (GH-30359) https://github.com/python/cpython/commit/73140de97cbeb01bb6c9af1da89ecb

[issue23183] timeit CLI best of 3: undocumented output format

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

[issue31472] "Emulating callable objects" documentation misleading

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46377] TimedRotatingFileHandler "midnight" misleading when interval > 1

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- type: behavior -> enhancement versions: -Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue46376] PyMapping_Check returns 1 for list

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- type: behavior -> enhancement versions: -Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue46363] Two typos in versions 3.7 document translation of zh_CN

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: I copied the issue there: https://github.com/python/python-docs-zh-cn/issues/238 -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41403] Uncaught AttributeError in unittest.mock._get_target

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue41403> ___ ___ Python-bug

[issue29985] make install doesn't seem to support --quiet

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: Ken, the output you posted is for 3.7 and 3.8. Is this reproducible on 3.9+? (3.8 and lower are no longer maintained). -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue29

[issue28206] signal.Signals not documented

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.or

[issue46381] Improve documentation of CFLAGS_NODIST, LDFLAGS_NODIST

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

[issue46367] multiprocessing's "spawn" doesn't actually use spawn

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +vstinner versions: -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue46367> ___ ___ Python-bugs-list m

[issue46133] Unclear whether one can (or how to) provide source to exec-generated code

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: The source code is read from a file. If there is no file you get OSError, as the docstring states. -- nosy: +iritkatriel resolution: -> not a bug stage: -> resolved status: open -> closed ___ Pytho

[issue45737] assertLogs to optionally not disable existing handlers

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue45737> ___ ___ Python-bug

[issue46017] Tutorial incorrectly refers to skits rather than sketches.

2022-01-14 Thread Irit Katriel
Irit Katriel added the comment: I asked a Monty Python expert and he said I should close this. -- nosy: +iritkatriel stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue46133] Feature request: allow mechanism for creator of exec-generated code to provide source to pdb

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- stage: resolved -> versions: -Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue46133] Feature request: allow mechanism for creator of exec-generated code to provide source to pdb

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- nosy: -iritkatriel ___ Python tracker <https://bugs.python.org/issue46133> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29985] make install doesn't seem to support --quiet

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.11, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue29985> ___ ___ Python-bug

[issue29964] [doc] %z directive has no effect on the output of time.strptime

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

[issue20281] [doc] time.strftime %z format specifier is the same as %Z

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

[issue6686] xml.sax.xmlreader.XMLReader.getProperty (xml.sax.handler.property_xml_string) returns bytes

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue6

[issue45686] ElementTree.Element.extend: bad error message when error occurs in generator

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue45686> ___ ___ Python-bugs-list mailin

[issue45639] Support modern image formats in MIME types

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue45

[issue45266] subtype_clear can not be called from derived types

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: Victor, it's not clear to me whether this is a bug report or a "how do I do this" question, but in either case if you posted your code along with "I expected X but got Y", it would be easier to understand the issue. -- no

[issue44158] Clarify documentation for redirected stdout/stderr when using subprocess in Linux

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +docs@python versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue44158] Clarify documentation for redirected stdout/stderr when using subprocess in Linux

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy ___ Python tracker <https://bugs.python.org/issue44158> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45955] Calling read() on HTTPError may cause KeyError in tempfile

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- type: -> behavior versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue45955> ___ _

[issue44620] UUIDv1 is not RFC 4122 compliant

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- type: -> behavior versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue44620> ___ _

[issue39819] NULL pointer crash in Modules/_cursesmodule.c in PyInit__curses() on MIPS uclibc-ng and ncurses-6.2

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: Python 3.7 is no longer maintained. Please create a new issue if you are seeing this problem on a current (>= 3.9) version. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open

[issue39823] Disassembly - improve documentation for bytecode instruction class and set source line no. attribute for every instruction

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: I don't think this change should be made - it would generate the same information in a slightly different format, which will break existing code while not making it possible to do anything we can't do now. -- nosy: +iritkatriel versions: +P

[issue39441] mimetypes.guess_extension unable to get non-lowercase mimetype

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

[issue37943] mimetypes.guess_extension() doesn’t get JPG right

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: remind -> out of date status: open -> closed ___ Python tracker <https://bugs.python.org/issue37943> ___ ___ Pyth

[issue42028] Regression in mimetypes for image/bmp

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue42028> ___

[issue39441] mimetypes.guess_extension unable to get non-lowercase mimetype

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: See also Issue20392. -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue39441> ___ ___ Python-bugs-list m

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

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy type: -> behavior versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7 ___ Python tracker <https://bugs.python.org/issu

[issue28186] Autogenerated tabs / trailing whitespace

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue44408] imaplib fails when server sends extra blank line after literal value

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: How does it fail? Can you provide a reproducer and add a unit test to the PR? -- nosy: +iritkatriel type: crash -> behavior versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.pyth

[issue43814] Fix the error message for disallowed __weakref__ slots

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue43

[issue39324] Add mimetype for extension .md (markdown)

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue39

[issue39663] IDLE: Add additional tests for pyparse

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

[issue42199] bytecode_helper assertNotInBytecode fails too eagerly

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

[issue40962] Add documentation for asyncio._set_running_loop()

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- type: -> enhancement versions: +Python 3.11 -Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue29257] Possible error in discussion of Abstract Base Classes and abstract properties

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: I think this is out of date, the example is different now: https://docs.python.org/3/library/abc.html#abc.abstractproperty -- nosy: +iritkatriel resolution: -> out of date status: open -> pending ___ Python t

[issue23557] Misc/SpecialBuilds.txt contains outdated information about PYMALLOC_DEBUG

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: The PYMALLOC_DEBUG macro was removed in https://github.com/python/cpython/pull/25711/files -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracke

[issue44901] Info about used pickle protocol used by multiprocessing.Queue

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue44901> ___ ___

[issue37084] _ctypes not failing, can't find reason

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: Python 3.7 is no longer maintained, so it's unlikely anyone will look at this now. Please create a new issue if you can reproduce the problem on a current version (>=3.9). -- nosy: +iritkatriel resolution: -> out of date stage: -> r

[issue34924] inspect.signature isn't aware that types.MethodType can wrap any callable

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue34924> ___ ___

[issue39276] type() cause segmentation fault in callback function called from C extension

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue39276> ___ ___

[issue42390] Other Python implementations may not expose the module name in datetime type names

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: William, can you elaborate where this came up? -- nosy: +iritkatriel status: open -> pending versions: -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue36369] test_weakref super slow on RPi Zero

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer maintained. Please create a new issue if you are seeing slow tests with a current version of python (ideally 3.10 or one of the 3.11 alphas), and you are interested in investigating along the lines of Victor's suggestion. --

[issue34672] '%Z' strftime specifier never works with musl

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

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

2022-01-15 Thread Irit Katriel
Irit Katriel added the comment: I can't reproduce this on 3.11. 3.7 is no longer maintained, and there have been many changes since then to the trace output. It is likely that this bug has been fixed, but please create a new issue if you see it on a current version. --

[issue39986] test_os / test_listdir failed as root-directory changed during test

2022-01-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue39986> ___ ___ Python-bug

[issue45767] Fix types for dev_t processing in posix module

2022-01-16 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue45767> ___ ___ Python-bugs-list mailin

[issue37800] Clean up the documentation on module attributes

2022-01-16 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.11 -Python 3.7 ___ Python tracker <https://bugs.python.or

[issue45444] test.test_concurrent_futures fail in x86_ 64 architecture

2022-01-16 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue45444> ___ ___ Python-bugs-list mailin

[issue44495] wrong FNAME in tarfile if tgz extension is used

2022-01-16 Thread Irit Katriel
Change by Irit Katriel : -- type: -> behavior versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue44495> ___ _

[issue35974] os.DirEntry.inode() returns invalid value within Docker container

2022-01-16 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer maintained. Please create a new issue if you are seeing this on a current python version (>= 3.9). -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open

[issue39602] importlib: lazy loading can result in reimporting a submodule

2022-01-16 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +brett.cannon versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue39

[issue39064] ValueError in zipfile.ZipFile

2022-01-16 Thread Irit Katriel
Irit Katriel added the comment: It's unlikely that anyone will download a binary from bpo and open it. Can you help us reproduce the issue without that? First question is whether you can reproduce this on a version of python that is still in maintenance - 3.9 or higher? --

[issue37311] Solaris 11.3 w/ Studio 12.6 test_support fail

2022-01-16 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer maintained. Please create a new issue if you are seeing this problem on a current version (>= 3.9). -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open

[issue37310] Solaris 11.3 w/ Studio 12.6 test_ctypes fail

2022-01-16 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer maintained. Please create a new issue if you are seeing this problem on a current version (>= 3.9). -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open

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