Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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
Change by Irit Katriel :
--
nosy: +serhiy.storchaka
___
Python tracker
<https://bugs.python.org/issue46336>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Irit Katriel :
--
stage: -> resolved
status: pending -> closed
___
Python tracker
<https://bugs.python.org/issue23902>
___
___
Python-bugs-list
Change by Irit Katriel :
--
resolution: -> works for me
stage: patch review -> resolved
status: pending -> closed
___
Python tracker
<https://bugs.python.or
Change by Irit Katriel :
--
stage: -> resolved
status: pending -> closed
___
Python tracker
<https://bugs.python.org/issue6942>
___
___
Python-bugs-list
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
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
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
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
Change by Irit Katriel :
--
keywords: +easy
versions: +Python 3.11 -Python 3.6, Python 3.7
___
Python tracker
<https://bugs.python.org/issue28159>
___
___
Pytho
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
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
Irit Katriel added the comment:
Yes, you’re right of course ;)
--
___
Python tracker
<https://bugs.python.org/issue46343>
___
___
Python-bugs-list mailin
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
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
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
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
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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
Change by Irit Katriel :
--
stage: -> resolved
status: pending -> closed
___
Python tracker
<https://bugs.python.org/issue30569>
___
___
Python-bugs-list
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
Irit Katriel added the comment:
Thank you Ned.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Irit Katriel :
--
keywords: +easy
versions: -Python 3.6, Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue45991>
___
___
Pytho
Change by Irit Katriel :
--
keywords: +easy
versions: -Python 3.6, Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue45492>
___
___
Pytho
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
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
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
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
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
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
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
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
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Irit Katriel :
--
resolution: -> works for me
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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
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
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
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
Change by Irit Katriel :
--
versions: -Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue46381>
___
___
Python-bugs-list mailing list
Unsub
Change by Irit Katriel :
--
nosy: +vstinner
versions: -Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue46367>
___
___
Python-bugs-list m
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
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
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
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
Change by Irit Katriel :
--
nosy: -iritkatriel
___
Python tracker
<https://bugs.python.org/issue46133>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Irit Katriel :
--
resolution: works for me -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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
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
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
Change by Irit Katriel :
--
keywords: +easy
___
Python tracker
<https://bugs.python.org/issue44158>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Irit Katriel :
--
type: -> behavior
versions: -Python 3.6, Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue45955>
___
_
Change by Irit Katriel :
--
type: -> behavior
versions: -Python 3.6, Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue44620>
___
_
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
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
Change by Irit Katriel :
--
versions: -Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue39441>
___
___
Python-bugs-list mailing list
Unsub
Change by Irit Katriel :
--
resolution: remind -> out of date
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue37943>
___
___
Pyth
Change by Irit Katriel :
--
resolution: -> fixed
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue42028>
___
Irit Katriel added the comment:
See also Issue20392.
--
nosy: +iritkatriel
___
Python tracker
<https://bugs.python.org/issue39441>
___
___
Python-bugs-list m
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
Change by Irit Katriel :
--
resolution: -> out of date
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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
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
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
Change by Irit Katriel :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue44901>
___
___
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
Change by Irit Katriel :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue34924>
___
___
Change by Irit Katriel :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue39276>
___
___
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
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.
--
Change by Irit Katriel :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
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.
--
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
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
Change by Irit Katriel :
--
resolution: -> fixed
stage: -> resolved
status: open -> closed
versions: +Python 3.11 -Python 3.7
___
Python tracker
<https://bugs.python.or
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
Change by Irit Katriel :
--
type: -> behavior
versions: -Python 3.6, Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue44495>
___
_
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
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
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?
--
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
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
301 - 400 of 3640 matches
Mail list logo