Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue32758
--
nosy: +serhiy.storchaka, xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
https://bugs.python.org/issue42609 too
--
___
Python tracker
<https://bugs.python.org/issue46110>
___
___
Python-bug
New submission from Karthikeyan Singaravelan :
zoneinfo module currently emits deprecation warnings due to API changes in
importlib.resources
./python -Wonce -m test test_zoneinfo
0:00:00 load avg: 0.73 Run tests sequentially
0:00:00 load avg: 0.73 [1/1] test_zoneinfo
/home/karthikeyan/stuff
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46118>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +gvanrossum, serhiy.storchaka
___
Python tracker
<https://bugs.python.org/issue46167>
___
___
Python-bugs-list m
Karthikeyan Singaravelan added the comment:
I just copied the implementation and normalize_path function was part of it.
Looking into the implementation of normalize_path it validates the given
argument to be a filename without any separator. I will leave it to Jason for a
better
Karthikeyan Singaravelan added the comment:
Translated documentation is maintained at
https://github.com/python/python-docs-zh-cn/issues
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
This could be due to issue40187
--
nosy: +serhiy.storchaka, xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
This seems to be similar to https://bugs.python.org/issue35748
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
See also issue46524 for a similar discussion.
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue46576 and
https://github.com/python/cpython/pull/31015
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue34392
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
> There were ideas for exotic matchers such as IsInstance(), InRange(),
> RegexMatchingGroup() and so on.
https://www.python.org/dev/peps/pep-0622/#custom-matching-protocol
The PEP has some mention about a similar use case in custom match pr
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46690>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
See also https://bugs.python.org/issue36956
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
I guess the problem is that during the initial mock creation kwargs is passed
so calling test_method immediately after mock creation raises ValueError. But
as we loop through the attributes and create new child mock for the attributes
the original
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46709>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +lukasz.langa
___
Python tracker
<https://bugs.python.org/issue46681>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +rhettinger
___
Python tracker
<https://bugs.python.org/issue46730>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +njs
___
Python tracker
<https://bugs.python.org/issue46752>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +eric.smith
___
Python tracker
<https://bugs.python.org/issue46757>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
This looks similar to a previous proposal
https://discuss.python.org/t/enum-for-open-modes/2445
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
This change has introduced deprecation warning in tests
PYTHONWARNINGS=always ./python -Wall -X dev -m test.test_typing
Karthikeyan Singaravelan added the comment:
The test introduces a deprecation warning. It might be fixed by using raw
string like the msg_format used in other test.
./python -Wall -m py_compile Lib/test/test_property.py
Lib/test/test_property.py:345: DeprecationWarning: invalid escape
Karthikeyan Singaravelan added the comment:
This looks similar to https://bugs.python.org/issue36363
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46
Karthikeyan Singaravelan added the comment:
This seems to be a duplicate of https://bugs.python.org/issue37190
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue42
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46877>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue46907>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
https://nvd.nist.gov/vuln/detail/CVE-2020-14422
Lib/ipaddress.py in Python through 3.8.3 improperly computes hash values in the
IPv4Interface and IPv6Interface classes, which might allow a remote attacker to
cause a denial of service if an
Karthikeyan Singaravelan added the comment:
The PR introduced some deprecation warnings in tests.
./python -Wall -m test test_unicode
0:00:00 load avg: 1.54 Run tests sequentially
0:00:00 load avg: 1.54 [1/1] test_unicode
/home/karthikeyan/stuff/python/cpython/Lib/test
Change by Karthikeyan Singaravelan :
--
nosy: +rhettinger
___
Python tracker
<https://bugs.python.org/issue47002>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
Seems related to https://bugs.python.org/issue9334
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue47
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue47061>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
This looks similar to https://bugs.python.org/issue46206
--
nosy: +pablogsal, xtreak
___
Python tracker
<https://bugs.python.org/issue47
Karthikeyan Singaravelan added the comment:
Sphinx also changed the URL in https://github.com/sphinx-doc/sphinx/pull/10267
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue47
Karthikeyan Singaravelan added the comment:
The commit seems to emit a deprecation warning in test_logging. Probably the
warning needs to be handled while setting trigger = self.logger.warn
PYTHONWARNINGS=always ./python -Wall -m test test_logging
0:00:00 load avg
Karthikeyan Singaravelan added the comment:
This is documented
https://docs.python.org/3/library/functions.html#round
> The behavior of round() for floats can be surprising: for example,
> round(2.675, 2) gives 2.67 instead of the expected 2.68. This is not a bug:
> it’s a resu
Karthikeyan Singaravelan added the comment:
Seems to be duplicate of https://bugs.python.org/issue35759
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue47
Change by Karthikeyan Singaravelan :
--
nosy: +steve.dower
___
Python tracker
<https://bugs.python.org/issue47192>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +gvanrossum, levkivskyi
___
Python tracker
<https://bugs.python.org/issue37838>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +p-ganssle
___
Python tracker
<https://bugs.python.org/issue20861>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +pitrou
___
Python tracker
<https://bugs.python.org/issue37852>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
Seems related : https://bugs.python.org/issue35473
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37
Change by Karthikeyan Singaravelan :
--
components: +macOS
nosy: +ned.deily, ronaldoussoren
___
Python tracker
<https://bugs.python.org/issue37861>
___
___
Pytho
Karthikeyan Singaravelan added the comment:
I think this is same as https://bugs.python.org/issue29573 .
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37
Change by Karthikeyan Singaravelan :
--
nosy: +gregory.p.smith
___
Python tracker
<https://bugs.python.org/issue37867>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
Removed message: https://bugs.python.org/msg349997
___
Python tracker
<https://bugs.python.org/issue32545>
___
___
Pytho
Change by Karthikeyan Singaravelan :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<https://bugs.python.org/issue37
Change by Karthikeyan Singaravelan :
--
nosy: +vstinner
___
Python tracker
<https://bugs.python.org/issue37901>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37873>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
See also
https://mail.python.org/pipermail/python-ideas/2017-September/047100.html . One
of the ideas in the thread was to move test.regrtest parallel execution
functionality into unittest. I think this would be good to have it in unittest
like
Change by Karthikeyan Singaravelan :
--
nosy: +steven.daprano
___
Python tracker
<https://bugs.python.org/issue37905>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
PEPs have their own GitHub issue tracker though I am not sure of edits to this
PEP.
GitHub : https://github.com/python/peps/issues . This can be closed as third
party.
--
nosy: +xtreak
___
Python
Change by Karthikeyan Singaravelan :
--
nosy: +paul.j3
___
Python tracker
<https://bugs.python.org/issue37910>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +belopolsky, p-ganssle
___
Python tracker
<https://bugs.python.org/issue37914>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
I am adding 3.8 regression since the code works with 3.7 though it involves
pytz.
--
keywords: +3.8regression
nosy: +belopolsky, p-ganssle, xtreak
___
Python tracker
<https://bugs.python.org/issue37
Change by Karthikeyan Singaravelan :
--
title: Segfault in comparison between datetime.timezone.utc and putz.utc ->
Segfault in comparison between datetime.timezone.utc and pytz.utc
___
Python tracker
<https://bugs.python.org/issu
Karthikeyan Singaravelan added the comment:
Seems this is due to issue37685 (dde944f9df) on bisecting datetime related
changes. Adding Serhiy. I guess this could be marked as release blocker.
Here is a simplified reproducer on extracting pytz.utc source [0] which is an
object of simple
Karthikeyan Singaravelan added the comment:
Please see discussion at issue36953 and issue37324. It's currently blocked by
Jinja that doesn't have a release with the fix to be used in CI.
--
nosy: +xtreak
___
Python track
Karthikeyan Singaravelan added the comment:
This looks like a duplicate of https://bugs.python.org/issue35113 . I have
created a PR for the issue but didn't have time to debug the Windows issue.
--
nosy: +xtreak
___
Python tracker
&
Karthikeyan Singaravelan added the comment:
Closing this since PRs have been merged. Thanks Aifu LIU for the report.
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bug
Change by Karthikeyan Singaravelan :
--
nosy: +rhettinger
___
Python tracker
<https://bugs.python.org/issue37927>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
This looks like a duplicate of issue35362. I would prefer closing one of them
to keep the discussion in one place. This looks like a variant of this issue :
issue35063
--
nosy: +xtreak
___
Python
Karthikeyan Singaravelan added the comment:
Added lukasz since last beta is by Monday.
--
nosy: +lukasz.langa
___
Python tracker
<https://bugs.python.org/issue37
New submission from Karthikeyan Singaravelan :
Now that XML has pretty print option with issue14465 would it be handy to add a
command line tool pretty printer similar to json.tool? This can be written as
one-liner similar to json pretty printing but I think it's a good option and
hav
Karthikeyan Singaravelan added the comment:
I guess '\f' translates to \x0c and using raw string helps with this.
>>> ord('\f')
12
>>> '\f'
'\x0c'
>>> var = "d:\stuff\morestuff\furtherdown\THEFILE.txt"
>>>
Change by Karthikeyan Singaravelan :
--
nosy: +scoder
___
Python tracker
<https://bugs.python.org/issue23423>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
Thanks Stefan for the link. XPath support sounds cool to me given that there is
already support in stdlib. It could help with filtering using xml.tool itself
instead of passing the output to another command to filter. My initial approach
was to
Karthikeyan Singaravelan added the comment:
There are several modules that expose some of their uses through command line
like json.tool, zipfile, tarfile, gzip, webbrowser etc. The initial proposal
was to expose the newly added indent function over the command line to provide
the same
New submission from Karthikeyan Singaravelan :
Can you please add a description to explain the report?
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37
Change by Karthikeyan Singaravelan :
--
components: +Windows
nosy: +eryksun, paul.moore, steve.dower, xtreak, zach.ware
___
Python tracker
<https://bugs.python.org/issue37
Change by Karthikeyan Singaravelan :
--
nosy: +vstinner
___
Python tracker
<https://bugs.python.org/issue37961>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +belopolsky, p-ganssle
___
Python tracker
<https://bugs.python.org/issue37962>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +lukasz.langa, ned.deily
___
Python tracker
<https://bugs.python.org/issue37967>
___
___
Python-bugs-list mailin
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37972>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
Closing this as fixed since all PRs are merged. Thank you all :)
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Karthikeyan Singaravelan :
--
nosy: +rhettinger
type: -> behavior
___
Python tracker
<https://bugs.python.org/issue37974>
___
___
Python-bugs-lis
Karthikeyan Singaravelan added the comment:
Thanks for the report. This was fixed in
82cd3cede804ca694fb0657fd985d5eff84a414f (https://bugs.python.org/issue31678).
It was not merged to 3.5 at that time. Now 3.5 only accepts security fixes so I
would propose closing this as duplicate of
Change by Karthikeyan Singaravelan :
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> Incorrect C Function name for timedelta
___
Python tracker
<https://bugs.python
Change by Karthikeyan Singaravelan :
--
nosy: +serhiy.storchaka
___
Python tracker
<https://bugs.python.org/issue37944>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
Can you please attach the code snippet as text instead of screenshot so that it
would be helpful to copy paste and run. In the issue please add a description
of what's the output you are expecting and what's the actual outpu
Change by Karthikeyan Singaravelan :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37995>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +belopolsky, p-ganssle
___
Python tracker
<https://bugs.python.org/issue37992>
___
___
Python-bugs-list mailin
Karthikeyan Singaravelan added the comment:
I think this is fixed with 2a99fd911ebeecedbb250a05667cd46eca4735b9 which would
be included in 3.7.5 since this missed 3.7.4RC1 . There is also a test for this
at
https://github.com/python/cpython/blob/daa82d019c52e95c3c57275307918078c1c0ac81/Lib
Change by Karthikeyan Singaravelan :
--
nosy: +pitrou
___
Python tracker
<https://bugs.python.org/issue37997>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Karthikeyan Singaravelan :
--
nosy: +brett.cannon
___
Python tracker
<https://bugs.python.org/issue38000>
___
___
Python-bugs-list mailing list
Unsub
Karthikeyan Singaravelan added the comment:
This will emit a SyntaxWarning in Python 3.8 to use == instead of using is for
literals. This is not a bug but an implementation detail over caching a range
of integers at
https://github.com/python/cpython/blob
Karthikeyan Singaravelan added the comment:
https://docs.python.org/3.0/whatsnew/3.0.html
> The builtin basestring abstract type was removed. Use str instead. The str
> and bytes types don’t have functionality enough in common to warrant a shared
> base class. The 2to3 tool (
Change by Karthikeyan Singaravelan :
--
nosy: +ned.deily
___
Python tracker
<https://bugs.python.org/issue38004>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +jdemeyer
___
Python tracker
<https://bugs.python.org/issue38006>
___
___
Python-bugs-list mailing list
Unsub
Change by Karthikeyan Singaravelan :
--
nosy: +scoder
___
Python tracker
<https://bugs.python.org/issue38011>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
Here min uses the ASCII value of the letters for comparison. So for 'Infinity'
'I' (73) has the lowest value and for 'inFinity' 'F' (70) has the lowest value
as seen below.
>>> list(map(lambda c
Change by Karthikeyan Singaravelan :
--
nosy: +davin
___
Python tracker
<https://bugs.python.org/issue38018>
___
___
Python-bugs-list mailing list
Unsubscribe:
Karthikeyan Singaravelan added the comment:
Please include the text of the repl session in issue so that it would be easy
to copy past and also more accessible. The issue is as below in the attached
image. I guess this is due to floating point representation and has some
possible solutions
Karthikeyan Singaravelan added the comment:
Using a side_effect is one way to achieve this currently if I understand the
use case correctly. For every open side_effect will be called and hence it will
return a new mock_open with read_data for the given filename used inside the
context. This
Karthikeyan Singaravelan added the comment:
Thanks for the report. Would you be able to make a PR for this? I think this is
a good newcomer friendly issue.
--
nosy: +vinay.sajip, xtreak
versions: -Python 3.5, Python 3.6
___
Python tracker
<ht
Karthikeyan Singaravelan added the comment:
@aeros167 The build log failures due to timeout in the linked Azure pipeline
failure seem to be similar to report at issue37245
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue18
Karthikeyan Singaravelan added the comment:
I just checked the behavior with asynctest. The _mock_call implementation where
the call is recorded is similar except that in asynctest it's a synchronous
function [0] and in AsyncMock it's an async function [1] thus needs to be
Karthikeyan Singaravelan added the comment:
This looks like spam to me. Feel free to reopen the issue if incorrect with a
better description and example of the problem.
--
nosy: +xtreak
resolution: -> not a bug
stage: -> resolved
status: open -&g
Karthikeyan Singaravelan added the comment:
> I wonder if `await_count` is really necessary, since it is essentially the
> same as `call_count`. Would it be too late or confusing to remove it now?
IMO if we are to document that mock_calls is recorded over await then we can
hav
1 - 100 of 3092 matches
Mail list logo