Karthikeyan Singaravelan added the comment:
There is PR https://github.com/python/cpython/pull/17134 which is not merged to
fix the exception so this is not fixed for 3.8.2. Once the fix is applied and
released you can test the same
--
___
Python
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40133>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +eryksun
___
Python tracker
<https://bugs.python.org/issue40138>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
New changeset bd6a4c3d72828d3d0e13922e165998539d24f8bc by Zackery Spytz in
branch 'master':
bpo-40131: Fix source and target order in zipapp example (GH-19290)
https://github.com/python/cpython/commit/bd6a4c3d72828d3d0e13922e165998
Karthikeyan Singaravelan added the comment:
New changeset e6783981df6ae5c63f73be67cc41b1350bc0fcc6 by Miss Islington (bot)
in branch '3.8':
bpo-40131: Fix source and target order in zipapp example (GH-19290) (GH-19339)
https://github.com/python/cpyt
Karthikeyan Singaravelan added the comment:
New changeset d19162fe5b2aba48a94278baa0f569fc42932072 by Miss Islington (bot)
in branch '3.7':
bpo-40131: Fix source and target order in zipapp example (GH-19290) (GH-19340)
https://github.com/python/cpyt
Karthikeyan Singaravelan added the comment:
Thanks Leron for the report. Thanks Zackery for the patch.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: -Python 3.5, Python 3.6
___
Python tracke
Change by Karthikeyan Singaravelan :
--
nosy: +mark.dickinson, rhettinger, stutzbach
___
Python tracker
<https://bugs.python.org/issue40177>
___
___
Python-bug
Change by Karthikeyan Singaravelan :
--
nosy: +cjw296, xtreak
___
Python tracker
<https://bugs.python.org/issue40126>
___
___
Python-bugs-list mailing list
Unsub
New submission from Karthikeyan Singaravelan :
The following error is caused in Docs build for a 3.8 backport since sphinx is
ran with warnings. Sphinx released 3.0 on April 6. The last successful build on
master uses Sphinx 2.2.0 [0]. My guess is sphinx new version possibly breaking
the
Change by Karthikeyan Singaravelan :
--
nosy: +asvetlov
___
Python tracker
<https://bugs.python.org/issue40213>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
The sphinx version is not pinned in 3.7, 3.6, 3.5 and 2.7 branches too for
Doc/Makefile that can cause error on someone trying it out locally. They are
pinned in .travis.yml and .azure-pipelines configurations
Change by Karthikeyan Singaravelan :
--
nosy: +serhiy.storchaka
___
Python tracker
<https://bugs.python.org/issue39966>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
Is this going to be backported? It seems backports also use the same build and
have this error. Sample 3.8 backport build that seems to be related to this
issue :
https://dev.azure.com/Python/cpython/_build/results?buildId=60753&view=lo
Change by Karthikeyan Singaravelan :
--
nosy: +belopolsky, p-ganssle
___
Python tracker
<https://bugs.python.org/issue40236>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +eryksun
___
Python tracker
<https://bugs.python.org/issue40238>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
I have filed an issue upstream and it's fixed. The release of 3.0.1 is planned
in few days and could help for other branches. But it would be nice to see the
version pinned to avoid these problems in future. Upstream report :
https://githu
Change by Karthikeyan Singaravelan :
--
nosy: +serhiy.storchaka
___
Python tracker
<https://bugs.python.org/issue40246>
___
___
Python-bugs-list mailin
New submission from Karthikeyan Singaravelan :
Please add a description of the issue you are facing with a simple script of
the behavior.
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40
Karthikeyan Singaravelan added the comment:
Copy paste of the contents in the text file
In the re module there is an experimental feature called Scanner.
Some unexpected behavior was found while working with it.
Here is an example:
>>> re.Scanner([('\w+=(\d+);', lambda s
Change by Karthikeyan Singaravelan :
--
nosy: +benjamin.peterson
___
Python tracker
<https://bugs.python.org/issue40204>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +eric.smith
___
Python tracker
<https://bugs.python.org/issue40267>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
You can use os.path.expanduser to expand tilde. Other os functions don't do it
implicitly.
>>> import os
>>> os.path.exists("~/stuff")
False
>>> os.path.exists(os.path.expanduser(
Change by Karthikeyan Singaravelan :
--
nosy: +rhettinger
___
Python tracker
<https://bugs.python.org/issue40273>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
replace under the hood uses os.replace. The docs for os.replace indicate error
for certain scenarios where target is a directory :
https://docs.python.org/3/library/os.html#os.replace . See also some difference
between os.rename and os.replace
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40280>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +gvanrossum, levkivskyi
___
Python tracker
<https://bugs.python.org/issue40298>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
Thanks for the idea. But given the size of the patch and benefit it provides
for the code I feel it could be a better idea to have it in PyPI and then add
it to stdlib later once it gathers more feedback and adoption. Adding others
for more
Change by Karthikeyan Singaravelan :
--
nosy: +vinay.sajip
___
Python tracker
<https://bugs.python.org/issue40300>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue40303>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
Is this different from
https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.as_uri
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40319>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
Can you please print the output of python -v? Using python 3.8.0 on Linux
returns None for update method.
--
___
Python tracker
<https://bugs.python.org/issue40
Karthikeyan Singaravelan added the comment:
This will be resolved hopefully resolved using
https://github.com/python/cpython/pull/10307 . Using my patch on the reproducer
in the report.
./python bpo40317.py
123
class Number:
payload = 123
321
class Number:
payload
Karthikeyan Singaravelan added the comment:
New changeset 696136b993e11b37c4f34d729a0375e5ad544ade by Karthikeyan
Singaravelan in branch 'master':
bpo-35113: Fix inspect.getsource to return correct source for inner classes
(#10307)
https://github.com/python/cpyt
Karthikeyan Singaravelan added the comment:
New changeset 696136b993e11b37c4f34d729a0375e5ad544ade by Karthikeyan
Singaravelan in branch 'master':
bpo-35113: Fix inspect.getsource to return correct source for inner classes
(#10307)
https://github.com/python/cpyt
Karthikeyan Singaravelan added the comment:
Fixed in master now with
https://github.com/python/cpython/commit/696136b993e11b37c4f34d729a0375e5ad544ade
. This includes the change of show decorators for classes too to make it
consistent with functions so it's not backp
Change by Karthikeyan Singaravelan :
--
nosy: +gregory.p.smith
___
Python tracker
<https://bugs.python.org/issue40313>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +steven.daprano
___
Python tracker
<https://bugs.python.org/issue40331>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +davin, pitrou
___
Python tracker
<https://bugs.python.org/issue40307>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue37199 for related work.
--
nosy: +ZackerySpytz, asvetlov, xtreak
___
Python tracker
<https://bugs.python.org/issue40
Change by Karthikeyan Singaravelan :
--
nosy: +BTaskaya, pablogsal
___
Python tracker
<https://bugs.python.org/issue40349>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue32912>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +pitrou
___
Python tracker
<https://bugs.python.org/issue40358>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
The patch assumed using the magic method attribute as the way to evaluate an
object in a context which I got to know is wrong since evaluations in context
like boolean are not only dependent on one magic method but has a precedence
over several
Change by Karthikeyan Singaravelan :
--
nosy: +belopolsky, p-ganssle
___
Python tracker
<https://bugs.python.org/issue40356>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue40365>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +steve.dower
___
Python tracker
<https://bugs.python.org/issue40377>
___
___
Python-bugs-list mailing list
Unsub
New submission from Karthikeyan Singaravelan :
_field_types of typing.NamedTuple was documented as deprecated and to be
removed in Python 3.9 in favor of __annotations__ at
https://docs.python.org/3/library/typing.html#typing.NamedTuple . Issue where
it was deprecated : issue36320
Karthikeyan Singaravelan added the comment:
Sorry for the noise, I didn't check the master branch properly. Closing this as
duplicate.
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> Remove the _field_types attrib
Change by Karthikeyan Singaravelan :
--
nosy: +tim.peters
___
Python tracker
<https://bugs.python.org/issue40394>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<https://bugs.python.org/issue40
Change by Karthikeyan Singaravelan :
--
nosy: +lisroach, xtreak
type: -> behavior
___
Python tracker
<https://bugs.python.org/issue40406>
___
___
Python-
Change by Karthikeyan Singaravelan :
--
pull_requests: +19056
pull_request: https://github.com/python/cpython/pull/19734
___
Python tracker
<https://bugs.python.org/issue25
Change by Karthikeyan Singaravelan :
--
pull_requests: +19055
pull_request: https://github.com/python/cpython/pull/19734
___
Python tracker
<https://bugs.python.org/issue39
Karthikeyan Singaravelan added the comment:
I opened a PR to revert the change. issue25597 was open for sometime and the
implications as reported here seem to be greater than the original report to
just call the magicmethod. So we can revert the change to ensure there are no
regressions in
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue40420>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +steven.daprano
___
Python tracker
<https://bugs.python.org/issue40418>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
Thanks for the report. This was changed as part of issue28469 where autorange
docstring was updated. I guess this was missed out.
--
nosy: +serhiy.storchaka, xtreak
___
Python tracker
<ht
Karthikeyan Singaravelan added the comment:
yes, thanks Ammar. Thanks Grzegorz for the report.
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> inspect.getsource returns incorrect source for classes when
class definition is part
Karthikeyan Singaravelan added the comment:
Closing this as fixed with the enhancement to show decorator for classes too
for 3.9. Thank you all for the help on this.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.9 -P
Karthikeyan Singaravelan added the comment:
The change has been reverted as per issue39966. I am reopening this for further
discussion.
--
resolution: fixed ->
stage: resolved ->
status: closed -> open
___
Python tracke
Karthikeyan Singaravelan added the comment:
Thanks Avram for the report. I have reopened issue25597. Closing this as the
regression change has been reverted for 3.9.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -&g
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
type: -> behavior
___
Python tracker
<https://bugs.python.org/issue40447>
___
___
Python-bugs-list mai
Karthikeyan Singaravelan added the comment:
MagicMock object on call returns another MagicMock. AsyncMock object in turn
returns a coroutine which has to be awaited.
In the report mock.MagicMock().__aenter__() returns an AsyncMock object.
Accessing the query attribute will create an
Change by Karthikeyan Singaravelan :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<https://bugs.python.org/issue40
Karthikeyan Singaravelan added the comment:
https://docs.python.org/3/library/json.html#json.JSONEncoder
> To extend this to recognize other objects, subclass and implement a default()
> method with another method that returns a serializable object for o if
> possible, otherwise
Change by Karthikeyan Singaravelan :
--
nosy: +pitrou
title: pathlib's iterdir doesn't expecify what happens if directory content
change -> pathlib's iterdir doesn't specify what happens if directory content
change
___
Karthikeyan Singaravelan added the comment:
See also
https://mail.python.org/archives/list/python-committ...@python.org/thread/WEU5CQKIA4LIHWHT53YA7HHNUY5H2FUT/.
This was a problem with other CI GitHub actions when a change had to be
merged to master with which all PRs need to be manually
Change by Karthikeyan Singaravelan :
--
nosy: +lisroach, xtreak
___
Python tracker
<https://bugs.python.org/issue40573>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
I couldn't reproduce the change in result for consecutive calls on master
branch. They should return the same value.
./python
Python 3.9.0a6+ (heads/master:7f7e706d78, May 9 2020, 04:00:36)
[GCC 7.5.0] on linux
Type "help&qu
Karthikeyan Singaravelan added the comment:
https://bugs.python.org/issue40587 has been opened. Copy paste of the report as
below :
In python 3.8:
```
>>> class A(object):
... """standard docstring"""
... pass
...
>>> import ins
Karthikeyan Singaravelan added the comment:
You seem to use typing backport that has this issue :
https://github.com/python/typing/issues/573
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40
Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue37945
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue40
Change by Karthikeyan Singaravelan :
--
nosy: +ethan.furman, lars.gustaebel
___
Python tracker
<https://bugs.python.org/issue40666>
___
___
Python-bugs-list m
Change by Karthikeyan Singaravelan :
--
nosy: +gvanrossum, lys.nikolaou, pablogsal
___
Python tracker
<https://bugs.python.org/issue42485>
___
___
Python-bug
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue42501>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
https://bugs.python.org/issue25061 also had some discussion over error message
display for enums
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue42
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue42535>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue42547>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
https://docs.python.org/3/howto/regex.html#more-metacharacters
$
Matches at the end of a line, which is defined as either the end of the string,
or any location followed by a newline character.
\Z
Matches only at the end of the string.
>>&g
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue41915>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Karthikeyan Singaravelan :
Please attach the program to reproduce the issue along with the full traceback
in the issue body. It looks like you are trying to use a variable named
'python' which is not present at the given scope during execution.
--
nos
Change by Karthikeyan Singaravelan :
Removed file: https://bugs.python.org/file49655/IMAG0215.jpg
___
Python tracker
<https://bugs.python.org/issue40529>
___
___
Pytho
Karthikeyan Singaravelan added the comment:
The fix to check for None seems straightforward to me and is only needed for
AsyncMock. I would wait for others thoughts on this.
--
nosy: +cjw296, lisroach, mariocj89, michael.foord, xtreak
___
Python
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue42572>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
pull_requests: +22542
pull_request: https://github.com/python/cpython/pull/23676
___
Python tracker
<https://bugs.python.org/issue42
Karthikeyan Singaravelan added the comment:
I don't have Python 3.9 with numpy to test this. Does this used to work with
python 3.8? Does using numpy produce any error or traceback in 3.9?
--
nosy: +xtreak
___
Python tracker
&
Karthikeyan Singaravelan added the comment:
Thanks, this looks like a duplicate of https://bugs.python.org/issue42532
--
___
Python tracker
<https://bugs.python.org/issue42
Karthikeyan Singaravelan added the comment:
It's a problem with 3.9 only as far as I know. The fix has been merged to
master (3.10) and 3.9 . I will check with 3.8 but I don't think it will be a
problem since 3.8 has a different code path. You can check the PR merged for
more
Karthikeyan Singaravelan added the comment:
3.9.1 is in RC1 as per https://www.python.org/dev/peps/pep-0596/#lifespan . It
will be available as part of 3.9.1 or 3.9.2 . I am not sure about anaconda
packaging schedule though.
--
___
Python tracker
Change by Karthikeyan Singaravelan :
--
nosy: +pablogsal, rhettinger, tim.peters
___
Python tracker
<https://bugs.python.org/issue42588>
___
___
Python-bug
Change by Karthikeyan Singaravelan :
--
Removed message: https://bugs.python.org/msg382866
___
Python tracker
<https://bugs.python.org/issue42621>
___
___
Pytho
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3, rhettinger
___
Python tracker
<https://bugs.python.org/issue42622>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +berker.peksag, ghaering
___
Python tracker
<https://bugs.python.org/issue42624>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
New changeset 14f2a124e20081b8981c8d6165dbd78d11b6808c by Karthikeyan
Singaravelan in branch '3.9':
[3.9] bpo-42532: Check if NonCallableMock's spec_arg is not None instead of
call its __bool__ function (GH-23613) (GH-23676)
htt
Change by Karthikeyan Singaravelan :
--
nosy: +rhettinger
___
Python tracker
<https://bugs.python.org/issue42765>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue42967
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue42
Change by Karthikeyan Singaravelan :
--
nosy: +orsenthil, serhiy.storchaka
type: -> security
___
Python tracker
<https://bugs.python.org/issue43075>
___
_
Karthikeyan Singaravelan added the comment:
mock also broke similar package on removing __version__. See also
https://bugs.python.org/issue31826
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue43
901 - 1000 of 3092 matches
Mail list logo