[issue38251] urllib.request memory leak / overflow

2019-09-22 Thread Kumar Akshay


Kumar Akshay  added the comment:

Yes, https://bugs.python.org/issue37498 is indeed the same issue

--

___
Python tracker 
<https://bugs.python.org/issue38251>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38251] urllib.request memory leak / overflow

2019-09-22 Thread Kumar Akshay


Kumar Akshay  added the comment:

JFYI, Not reproducible on macOS.

--
nosy: +kakshay

___
Python tracker 
<https://bugs.python.org/issue38251>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-26 Thread Kumar Akshay

Kumar Akshay  added the comment:

I'm on macOS 10.14.3 and running those commands gives me this ->

~ ulimit -Sa
-t: cpu time (seconds)  unlimited
-f: file size (blocks)  unlimited
-d: data seg size (kbytes)  unlimited
-s: stack size (kbytes) 8192
-c: core file size (blocks) 0
-v: address space (kbytes)  unlimited
-l: locked-in-memory size (kbytes)  unlimited
-u: processes   709
-n: file descriptors4864
➜  ~ ulimit -Ha
-t: cpu time (seconds)  unlimited
-f: file size (blocks)  unlimited
-d: data seg size (kbytes)  unlimited
-s: stack size (kbytes) 65532
-c: core file size (blocks) unlimited
-v: address space (kbytes)  unlimited
-l: locked-in-memory size (kbytes)  unlimited
-u: processes   1064
-n: file descriptorsunlimited

--
nosy: +kakshay

___
Python tracker 
<https://bugs.python.org/issue36432>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21269] Provide args and kwargs attributes on mock call objects

2019-03-16 Thread Kumar Akshay

Kumar Akshay  added the comment:

ping..

--

___
Python tracker 
<https://bugs.python.org/issue21269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29466] pickle does not serialize Exception __cause__ field

2019-02-16 Thread Kumar Akshay


Kumar Akshay  added the comment:

Hey, can I work on this?

--
nosy: +kakshay

___
Python tracker 
<https://bugs.python.org/issue29466>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21269] Provide args and kwargs attributes on mock call objects

2019-02-10 Thread Kumar Akshay

Kumar Akshay  added the comment:

Thanks @xtreak!
I've added a PR with the following API

➜  cpython git:(fix-issue-21269) ✗ ./python.exe
Python 3.8.0a0 (heads/fix-issue-21269-dirty:2433a2ab70, Feb 10 2019, 14:24:54)
[Clang 10.0.0 (clang-1000.10.44.4)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from unittest.mock import Mock
>>> m = Mock()
>>> m(1, a=23)

>>> m.call_args
call(1, a=23)
>>> m.call_args.args #after this patch
(1,)
>>> m.call_args.kwargs   #after this patch
{'a': 23}
>>> m.call_args_list[0].args#after this patch
(1,)
>>> m.call_args_list[0].kwargs   #after this patch
{'a': 23}

--

___
Python tracker 
<https://bugs.python.org/issue21269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21269] Provide args and kwargs attributes on mock call objects

2019-02-10 Thread Kumar Akshay


Change by Kumar Akshay :


--
keywords: +patch, patch, patch
pull_requests: +11819, 11820, 11821
stage: needs patch -> patch review

___
Python tracker 
<https://bugs.python.org/issue21269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21269] Provide args and kwargs attributes on mock call objects

2019-02-10 Thread Kumar Akshay


Change by Kumar Akshay :


--
keywords: +patch
pull_requests: +11819
stage: needs patch -> patch review

___
Python tracker 
<https://bugs.python.org/issue21269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21269] Provide args and kwargs attributes on mock call objects

2019-02-10 Thread Kumar Akshay


Change by Kumar Akshay :


--
keywords: +patch, patch
pull_requests: +11819, 11820
stage: needs patch -> patch review

___
Python tracker 
<https://bugs.python.org/issue21269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21269] Provide args and kwargs attributes on mock call objects

2019-02-09 Thread Kumar Akshay


Kumar Akshay  added the comment:

Hey @xtreak, if you're not working on this, can I submit the patch?

--
nosy: +kakshay

___
Python tracker 
<https://bugs.python.org/issue21269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27035] Cannot set exit code in atexit callback

2019-01-23 Thread Kumar Akshay


Kumar Akshay  added the comment:

Sure, I would love to!

--

___
Python tracker 
<https://bugs.python.org/issue27035>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27035] Cannot set exit code in atexit callback

2019-01-22 Thread Kumar Akshay


Kumar Akshay  added the comment:

Can I work on this?
I noticed the same behaviour as python3.7 in python3.8 from master branch.

--
nosy: +kakshay

___
Python tracker 
<https://bugs.python.org/issue27035>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35798] duplicate SyntaxWarning: "is" with a literal

2019-01-21 Thread Kumar Akshay


Change by Kumar Akshay :


--
pull_requests: +11419, 11420, 11421

___
Python tracker 
<https://bugs.python.org/issue35798>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35798] duplicate SyntaxWarning: "is" with a literal

2019-01-21 Thread Kumar Akshay


Change by Kumar Akshay :


--
pull_requests: +11419, 11420

___
Python tracker 
<https://bugs.python.org/issue35798>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35798] duplicate SyntaxWarning: "is" with a literal

2019-01-21 Thread Kumar Akshay


Change by Kumar Akshay :


--
pull_requests: +11419

___
Python tracker 
<https://bugs.python.org/issue35798>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35798] duplicate SyntaxWarning: "is" with a literal

2019-01-21 Thread Kumar Akshay


Kumar Akshay  added the comment:

can I work on this?

--
nosy: +kakshay

___
Python tracker 
<https://bugs.python.org/issue35798>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com