[issue39139] Reference to depricated collections.abc class in collections is unnecessary and confusing

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The removal in 3.9 was reverted and postponed to 3.10 in issue39674. -- ___ Python tracker <https://bugs.python.org/issue39

[issue39679] functools: singledispatchmethod doesn't work with classmethod

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I guess the method checks for annotation on cls [0] which will be classmethod/staticmethod object in the report and won't have annotations. The annotations should be looked up in the function the classmethod/staticmethod decorator wraps around

[issue39679] functools: singledispatchmethod doesn't work with classmethod

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +lukasz.langa ___ Python tracker <https://bugs.python.org/issue39679> ___ ___ Python-bugs-list mailing list Unsub

[issue39682] pathlib.Path objects can be used as context managers

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +brett.cannon, pitrou ___ Python tracker <https://bugs.python.org/issue39682> ___ ___ Python-bugs-list mailin

[issue39670] 2to3 fix_apply tries to fix user-defined apply function calls

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The fixers are supposed to be executed on Python 2 files where apply was a builtin and was shadowed. So from the context of the fixer it tries to make the modification and it cannot distinguish that it's a builtin or user-defined call. In Python 3

[issue39681] pickle.load expects an object that implements readinto

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +pitrou ___ Python tracker <https://bugs.python.org/issue39681> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39635] One paragraph of the doc is not translated in French

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: -17932 ___ Python tracker <https://bugs.python.org/issue39635> ___ ___ Python-bugs-list mailing list Unsub

[issue39674] Keep deprecated features in Python 3.9 to ease migration from Python 2.7, but remove in Python 3.10

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39674> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39668] segmentation fault on calling __reversed__()

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: No problem, closing it as duplicate of issue38525. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Strange reversed dict behavior ___ Python tra

[issue39670] 2to3 fix_apply tries to fix user-defined apply function calls

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: apply was a builtin in Python 2 and not sure 2to3 can differentiate between user defined functions that shadow builtins. https://docs.python.org/3.8/library/2to3.html#2to3fixer-apply . Removes usage of apply(). For example apply(function, *args

[issue39671] Mention in docs that asyncio.FIRST_COMPLETED does not guarantee the completion of no more than one task

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker <https://bugs.python.org/issue39671> ___ ___ Pytho

[issue39668] segmentation fault on calling __reversed__()

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Can you please try and update to 3.8.1? It should be fixed there. -- ___ Python tracker <https://bugs.python.org/issue39

[issue21255] Attaching a PropertyMock records calls

2020-02-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue21255> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39668] segmentation fault on calling __reversed__()

2020-02-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This could be fixed with 24dc2f8c56697f9ee51a4887cf0814b6600c1815 issue38525 ➜ cpython git:(24dc2f8c56) ./python.exe -c 'list((lambda: None).__annotations__.__reversed__())' ➜ cpython git:(24dc2f8c56) git checkout HEAD~1 Previous HEAD position

[issue39669] macOS test failures

2020-02-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39669> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39664] Improve test coverage for operator module

2020-02-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- keywords: +patch pull_requests: +17914 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18537 ___ Python tracker <https://bugs.python.org/issu

[issue39664] Improve test coverage for operator module

2020-02-17 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : This ticket adds tests for operator module where some of the parts where not tested. Current coverage stands at 96.23% [0]. The added tests will get it closer to 100% and will help in testing the Python implementation of operator module. [0

[issue39661] TimedRotatingFileHandler doesn’t handle DST switch with daily rollover

2020-02-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue39661> ___ ___ Python-bugs-list mailing list Unsub

[issue39660] Contextvars: Optional callbacks on state change

2020-02-16 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +yselivanov ___ Python tracker <https://bugs.python.org/issue39660> ___ ___ Python-bugs-list mailing list Unsub

[issue38857] AsyncMock issue with awaitable return_value/side_effect/wraps

2020-02-16 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue38857> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39644] Add Binary module.

2020-02-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: For binary addition and subtraction is it any different from https://docs.python.org/3/library/operator.html . Is there a PyPI package that implements these ideas to see how useful it already is? -- nosy: +xtreak

[issue39635] One paragraph of the doc is not translated in French

2020-02-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Translation related issues are tracked under separate GitHub repo. Please report at https://github.com/python/python-docs-fr -- nosy: +mdk, xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39626] random choice to delegate to sample on sets

2020-02-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker <https://bugs.python.org/issue39626> ___ ___ Python-bugs-list mailing list Unsub

[issue39623] __str__ and __repr__ for asyncio.Task still omit arg values

2020-02-13 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This could sometimes make the output verbose when the arguments themselves are tasks while including arguments in the signature in _format_coroutine. $ cat /tmp/foo.py import asyncio async def foo(a, b): pass async def main(): task

[issue39623] __str__ and __repr__ for asyncio.Task still omit arg values

2020-02-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- type: -> behavior versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39623> ___ ___ Python-

[issue39623] __str__ and __repr__ for asyncio.Task still omit arg values

2020-02-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39623> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39623] __str__ and __repr__ for asyncio.Task still omit arg values

2020-02-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker <https://bugs.python.org/issue39623> ___ ___ Pytho

[issue39618] logger.exception with default message

2020-02-12 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue39618> ___ ___ Python-bugs-list mailing list Unsub

[issue39567] Add audit for os.walk(), os.fwalk(), Path.glob() and Path.rglob()

2020-02-12 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Do these new audit events have to be documented? -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39299] Improve test coverage for mimetypes module

2020-02-11 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39603] [security] http.client: HTTP Header Injection in the HTTP method

2020-02-11 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39603> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39598] ERR_CACHE_MISS

2020-02-10 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The tracker is for issues related to CPython. This doesn't seem like a Python issue to me. Please use other forums for discussion. Closing it as not a bug. -- nosy: +xtreak resolution: -> not a bug stage: -> resolved status

[issue39587] Mixin repr overrides Enum repr in some cases

2020-02-09 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Bisecting points to issue29577 that introduced this change. -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39491] Import PEP 593 (Flexible function and variable annotations) support already implemented in typing_extensions

2020-02-08 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: -17793 ___ Python tracker <https://bugs.python.org/issue39491> ___ ___ Python-bugs-list mailing list Unsub

[issue39491] Import PEP 593 (Flexible function and variable annotations) support already implemented in typing_extensions

2020-02-08 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: -17797 ___ Python tracker <https://bugs.python.org/issue39491> ___ ___ Python-bugs-list mailing list Unsub

[issue39587] Mixin repr overrides Enum repr in some cases

2020-02-08 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +barry, eli.bendersky, ethan.furman ___ Python tracker <https://bugs.python.org/issue39587> ___ ___ Python-bug

[issue39529] Deprecate get_event_loop()

2020-02-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39529> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39577] venv --prompt argument is ignored

2020-02-07 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Can you please add a reproducer of the steps along with the operating system and python version? The --prompt was modified in 3.9 to accept "." so that the current folder name is used in issue38901. # Use custom name as testing for

[issue39578] MagicMock specialisation instance can no longer be passed to new MagicMock instance

2020-02-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +cjw296, lisroach, mariocj89, michael.foord, xtreak ___ Python tracker <https://bugs.python.org/issue39578> ___ ___

[issue39566] inspect.Signature.__init__ asks for parameters as dict but treats as list

2020-02-06 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: No problem, closing it as not a bug. Feel free to reopen if needed. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39569] Is the return value of pathlib.Path.glob() sorted?

2020-02-06 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: See also discussion at issue38764. I guess it's not sorted as per msg356356. -- nosy: +serhiy.storchaka, xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39566] inspect.Signature.__init__ asks for parameters as dict but treats as list

2020-02-06 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: It says list in the __init__ doc : https://github.com/python/cpython/blob/54b4f14712b9350f11c983f1c8ac47a3716958a7/Lib/inspect.py#L2759 It says that parameters is a public property that returns a mapping of parameter name to object at : https

[issue39558] Implement __len__() for itertools.combinations

2020-02-05 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker <https://bugs.python.org/issue39558> ___ ___ Python-bugs-list mailing list Unsub

[issue39551] mock patch should match behavior of import from when module isn't present in sys.modules

2020-02-04 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39551> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39545] await is not supported in f-string in 3.6

2020-02-04 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +yselivanov ___ Python tracker <https://bugs.python.org/issue39545> ___ ___ Python-bugs-list mailing list Unsub

[issue39540] Logging docs don't address the creation of multiple loggers when a hierarchy is provided

2020-02-03 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue39540> ___ ___ Python-bugs-list mailing list Unsub

[issue39524] Escape sequences in doc string of ast._pad_whitespace

2020-02-01 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue39524> ___ ___ Python-bugs-list mailin

[issue39518] Dark theme property of useragent should be supported for docs.python.org

2020-02-01 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks, closing it as third party issue. -- resolution: -> third party stage: -> resolved status: open -> closed title: Dark theme -> Dark theme property of useragent should be supported for doc

[issue39517] runpy calls open_code with Path object

2020-02-01 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- type: crash -> behavior ___ Python tracker <https://bugs.python.org/issue39517> ___ ___ Python-bugs-list mai

[issue39517] runpy calls open_code with Path object

2020-02-01 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Is there documentation in runpy where it's stated that path objects are accepted for the function? If not this seems to be an enhancement. -- nosy: +ncoghlan, xtreak ___ Python tracker <ht

[issue39518] Dark theme

2020-02-01 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This seems to be more of an issue relevant to python-docs-theme which is maintained separately : https://github.com/python/python-docs-theme -- nosy: +mdk, xtreak ___ Python tracker <ht

[issue39513] NameError: name 'open' is not defined

2020-01-31 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: See also https://bugs.python.org/issue26789 -- nosy: +vinay.sajip, xtreak status: pending -> open ___ Python tracker <https://bugs.python.org/issu

[issue39505] redundant ‘/’ in $env:VIRTUAL_ENV when use venv in powershell

2020-01-31 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue39505> ___ ___ Python-bugs-list mailing list Unsub

[issue39499] ValueError using index on tuple is not showing the tuple value

2020-01-30 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This is a duplicate of issue33560. See also issue13349 which is the original duplicate. -- nosy: +xtreak resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Non-informative error mess

[issue39495] xml.etree.ElementTree.TreeBuilder.start differs between pure Python and C implementations

2020-01-29 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +eli.bendersky, scoder, serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue39495> ___ ___ Python-bug

[issue39482] Write 2to3 fixer for MutableMapping

2020-01-28 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +benjamin.peterson, xtreak ___ Python tracker <https://bugs.python.org/issue39482> ___ ___ Python-bugs-list mailin

[issue25597] unittest.mock does not wrap dunder methods (__getitem__ etc)

2020-01-28 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39477] multiprocessing Pool maxtasksperchild=0 raises exception with endless traceback

2020-01-28 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue39477> ___ ___ Python-bugs-list mailing list Unsub

[issue39460] test_zipfile: test_add_file_after_2107() fails on s390x Fedora Rawhide 3.x

2020-01-28 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- assignee: docs@python -> components: -Build, Cross-Build, Documentation, Installation, Interpreter Core, Library (Lib), SSL, Unicode, Windows nosy: +David.Edelsohn, Dormouse759, hroncok -Alex.Willmer, Hinsonlcrystal, docs@python, ezio.melo

[issue39467] Allow to deprecate CLI arguments in argparse

2020-01-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +djarb, paul.j3, rhettinger -4383 ___ Python tracker <https://bugs.python.org/issue39467> ___ ___ Python-bugs-list m

[issue39466] Spam

2020-01-27 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks Zachary. -- ___ Python tracker <https://bugs.python.org/issue39466> ___ ___ Python-bugs-list mailin

[issue39466] Great

2020-01-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- Removed message: https://bugs.python.org/msg360768 ___ Python tracker <https://bugs.python.org/issue39466> ___ ___ Pytho

[issue39466] Great

2020-01-27 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Please stop spamming the bug tracker with random messages. -- nosy: +xtreak resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue37625] Class variable is still accessible after class instance has been overwritten out

2020-01-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- Removed message: https://bugs.python.org/msg360765 ___ Python tracker <https://bugs.python.org/issue37625> ___ ___ Pytho

[issue39464] Allow translating argument error messages

2020-01-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +paul.j3, rhettinger versions: -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue39

[issue39464] Allow translating argparse error messages

2020-01-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- title: Allow translating argument error messages -> Allow translating argparse error messages ___ Python tracker <https://bugs.python.org/issu

[issue39462] DataClass typo-unsafe attribute creation & unexpected behaviour (dataclasses)

2020-01-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +eric.smith ___ Python tracker <https://bugs.python.org/issue39462> ___ ___ Python-bugs-list mailing list Unsub

[issue37625] Class variable is still accessible after class instance has been overwritten out

2020-01-26 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- Removed message: https://bugs.python.org/msg360737 ___ Python tracker <https://bugs.python.org/issue37625> ___ ___ Pytho

[issue38473] AttributeError on asserting autospecced mock object added using attach_mock

2020-01-25 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thank you all for the review. Closing it as fixed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue38473] AttributeError on asserting autospecced mock object added using attach_mock

2020-01-25 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: New changeset 71d2b3344f4560ffee14fccd320b20e7add50fec by Karthikeyan Singaravelan (Miss Islington (bot)) in branch '3.7': bpo-38473: Handle autospecced functions and methods used with attach_mock (GH-16784) (#18166) https://github.com/python

[issue38473] AttributeError on asserting autospecced mock object added using attach_mock

2020-01-25 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: New changeset a5906b2bfce9560568dee1dcc3550e74e742dd34 by Karthikeyan Singaravelan (Miss Islington (bot)) in branch '3.8': bpo-38473: Handle autospecced functions and methods used with attach_mock (GH-16784) (GH-18167) https://github.com/python

[issue39451] enum.Enum reference count leaks

2020-01-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +barry, eli.bendersky, ethan.furman ___ Python tracker <https://bugs.python.org/issue39451> ___ ___ Python-bug

[issue39449] New Assignment operator

2020-01-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This is a syntax change and it should be discussed in python-ideas mailing list first and would require a PEP. I would suggest closing it now and reopening it if the idea is accepted. -- nosy: +xtreak

[issue39446] Documentation should reflect that all dicts are now ordered

2020-01-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: See also https://bugs.python.org/issue33609 . -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39446] Documentation should reflect that all dicts are now ordered

2020-01-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +inada.naoki, rhettinger ___ Python tracker <https://bugs.python.org/issue39446> ___ ___ Python-bugs-list mailin

[issue39444] Incorrect description of sorting for PrettyPrinter

2020-01-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: dicts preserve their insertion order from Python 3.6 and is reflected in the documentation unless I am missing something here. -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39442] from __future__ import annotations makes dataclasses.Field.type a string, not type

2020-01-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +eric.smith ___ Python tracker <https://bugs.python.org/issue39442> ___ ___ Python-bugs-list mailing list Unsub

[issue39430] tarfile.open(mode="r") race condition when importing lzma

2020-01-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +ethan.furman ___ Python tracker <https://bugs.python.org/issue39430> ___ ___ Python-bugs-list mailing list Unsub

[issue39437] collections.Counter support multiplication

2020-01-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker <https://bugs.python.org/issue39437> ___ ___ Python-bugs-list mailing list Unsub

[issue39435] pickle: inconsistent arguments pickle.py vs _pickle.c vs docs

2020-01-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +pitrou ___ Python tracker <https://bugs.python.org/issue39435> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39422] datetime.datetime.strptime incorrectly interpretting format '%Y%m%d'

2020-01-22 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +belopolsky, p-ganssle ___ Python tracker <https://bugs.python.org/issue39422> ___ ___ Python-bugs-list mailin

[issue39412] Install launcher for all users

2020-01-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue39

[issue39408] Add support for SQLCipher

2020-01-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +berker.peksag, ghaering ___ Python tracker <https://bugs.python.org/issue39408> ___ ___ Python-bugs-list mailin

[issue39404] Pexpect : setwinsize() not working in SLES 12.4 kernel 4.12.14-94.41-default

2020-01-20 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The tracker is for issues related to CPython. Can you please add a reproducer without pexpect or other dependencies explaining the issue with Python? https://github.com/pexpect/pexpect/issues is the issue tracker for pexpect. -- nosy

[issue39397] Mac : fail to launch Python 3.8

2020-01-20 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue39397> ___ ___ Pytho

[issue39377] json.loads encoding parameter deprecation removal in Python 3.9

2020-01-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: > Do you mean to say we should or shouldn't be raising an error? With > Inada-san's change you get this: Sorry, I misread the patch as only removal and didn't test the change completely. I am filing issues on code that I can find

[issue39377] json.loads encoding parameter deprecation removal in Python 3.9

2020-01-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Should we be raising an error if encoding is present on 3.9 as part of kwargs? It's obtrusive but for people going from Python 3.7 to 3.9 there will be no change and they will keep assuming encoding parameter is valid

[issue29435] Allow to pass fileobj to is_tarfile

2020-01-19 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +ethan.furman, xtreak versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue29435> ___ ___ Pytho

[issue39385] Add an assertNoLogs context manager to unittest TestCase

2020-01-19 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39385> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39387] configparser read_file() with variable

2020-01-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I can't reproduce this on Linux machine with Python 3.7 and 3.8. Assigning the open file object shouldn't really make a difference unless you are passing the same file object that was read to initialize a different configparser object. cat review

[issue39386] getting invalid data from async iterator

2020-01-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker <https://bugs.python.org/issue39386> ___ ___ Pytho

[issue39380] ftplib uses latin-1 as default encoding

2020-01-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +giampaolo.rodola ___ Python tracker <https://bugs.python.org/issue39380> ___ ___ Python-bugs-list mailin

[issue39379] sys.path[0] is already absolute path

2020-01-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue39379> ___ ___ Python-bugs-list mailing list Unsub

[issue39377] json.loads encoding parameter deprecation removal in Python 3.9

2020-01-17 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : This is a followup of issue33461. The warning says about removal of the encoding parameter in 3.9 . It's already ignored since 3.1 hence I assume this should be raising a TypeError in 3.9 removing the deprecation warning. I am finding some

[issue39374] Key in sort -> Callable Object instead of function

2020-01-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker <https://bugs.python.org/issue39374> ___ ___ Python-bugs-list mailing list Unsub

[issue39373] new world

2020-01-17 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : Please include a description of the issue you are facing and how it's a CPython bug. With an empty report this would be closed. -- nosy: +xtreak ___ Python tracker <https://bugs.python.org/issue39

[issue39368] A matrix (list of lists) behaves differently, depending how it is created

2020-01-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: You're referencing to the same list 3 times in B. So modifying it once means all the elements referring to same object reflect the change. Make a copy of the list during append to ensure modification of one doesn't affect other

[issue39357] bz2: Remove deprecated buffering parameter of bz2.BZ2File

2020-01-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the fix Victor :) -- ___ Python tracker <https://bugs.python.org/issue39357> ___ ___ Python-bugs-list m

[issue39357] bz2: Remove deprecated buffering parameter of bz2.BZ2File

2020-01-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: https://github.com/python/cpython/blob/9baf242fc733ab8a52a0b6201d95c6fdb8251745/Lib/bz2.py#L50 contains similar reference about buffering parameter deprecation like bz2.rst which could also be removed. Thanks. -- nosy: +xtreak

[issue39364] Automatically tabulate module contents in the docs

2020-01-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue39364> ___ ___ Python-bugs-list mailing list Unsubscribe:

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