[issue25913] base64.a85decode adobe flag incorrectly utilizes <~ as a marker causing error

2016-02-06 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Is there any requirement for further modification or it can be accepted?

--

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



[issue25822] Add docstrings to fields of urllib.parse results

2016-01-14 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Thank you Senthil for the improvements, I'll try to make it better next time :)

--

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



[issue25913] base64.a85decode adobe flag incorrectly utilizes <~ as a marker causing error

2016-01-14 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Modified according to Serhiy's last comment.

--
Added file: http://bugs.python.org/file41621/iss_25913_3.patch

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



[issue25822] Add docstrings to fields of urllib.parse results

2015-12-30 Thread Swati Jaiswal

Changes by Swati Jaiswal <jaiswalswat...@gmail.com>:


Added file: http://bugs.python.org/file41456/iss_25822_4.patch

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



[issue25930] Document that os.remove is semantically identical to os.unlink

2015-12-26 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Please check this. Fixed according to previous comment.

--
keywords: +patch
nosy: +curioswati
Added file: http://bugs.python.org/file41428/iss_25930.patch

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



[issue25913] base64.a85decode adobe flag incorrectly utilizes <~ as a marker causing error

2015-12-22 Thread Swati Jaiswal

Changes by Swati Jaiswal <jaiswalswat...@gmail.com>:


Added file: http://bugs.python.org/file41393/iss_25913_2.patch

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



[issue13317] building with 2to3 generates wrong import paths because build_ext is run after build_py

2015-12-22 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Can someone help with tests? I just need a pointer on how to do it.

--
keywords: +patch
Added file: http://bugs.python.org/file41394/iss_13317.patch

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



[issue25913] base64.a85decode adobe flag incorrectly utilizes <~ as a marker causing error

2015-12-20 Thread Swati Jaiswal

Changes by Swati Jaiswal <jaiswalswat...@gmail.com>:


--
keywords: +patch
Added file: http://bugs.python.org/file41377/iss_25913.patch

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



[issue25864] collections.abc.Mapping should include a __reversed__ that raises TypeError

2015-12-17 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Okay, so should I go for a patch for it? And sorry if it sounds naive, but do 
we provide the work around or the user would implement if they purposely want 
it. If we provide it, then where should it be written?

--

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



[issue25864] collections.abc.Mapping should include a __reversed__ that raises TypeError

2015-12-17 Thread Swati Jaiswal

Swati Jaiswal added the comment:

@Andrew Barnert,
sorry, I didn't get your previous messages so please ignore the last message i 
sent. I got your point i.e. We just need to provide the TypeError in the 
Mapping. And the work around is never implemented.
Should I go for the patch with it?

--

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



[issue25864] collections.abc.Mapping should include a __reversed__ that raises TypeError

2015-12-16 Thread Swati Jaiswal

Swati Jaiswal added the comment:

But the work around suggested here as:

def __reversed__(self):
return (self[k] for k in reversed(range(len(self

is also not a general solution, i.e. it is applicable for the following case:
m = MyDict({2:40, 0:10, 1:20})

but for any other mapping which does not have 0 as a key, it results in 
KeyError. So another solution, which would be more general could be:

def __reversed__(self):
keys = [k for k in self.keys()]
return (self[k] for k in reversed(keys))

--

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



[issue25864] collections.abc.Mapping should include a __reversed__ that raises TypeError

2015-12-14 Thread Swati Jaiswal

Swati Jaiswal added the comment:

> If you do `reversed(d)`, you get a nice `TypeError: argument to reversed() 
> must be a sequence`. But if you do `reversed(m)`, you get a reversed` 
> iterator. And when you iterate it, presumably expecting to get 0 and 1 in 
> some arbitrary order, you instead get 3, and then a KeyError:0`.

I got 2 instead of 3.

What are we exactly expecting here? How can a dictionary be reversed?

> I can't imagine this would break any working code. If it did, the workaround 
> would be simple: just implement `def __reversed__(self): return (self[k] for 
> k in reversed(range(len(self`.

This seems to make no difference. I still got the KeyError.

--

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



[issue25864] collections.abc.Mapping should include a __reversed__ that raises TypeError

2015-12-14 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Can it be reproduced in default branch? I tried but got:
AttributeError: module 'collections' has no attribute 'abc'

--
nosy: +curioswati

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



[issue25822] Add docstrings to fields of urllib.parse results

2015-12-13 Thread Swati Jaiswal

Changes by Swati Jaiswal <jaiswalswat...@gmail.com>:


Added file: http://bugs.python.org/file41300/iss_25822_3.patch

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



[issue25822] Add docstrings to fields of urllib.parse results

2015-12-11 Thread Swati Jaiswal

Changes by Swati Jaiswal <jaiswalswat...@gmail.com>:


Added file: http://bugs.python.org/file41290/iss_25822_2.patch

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



[issue25822] Add docstrings to fields of urllib.parse results

2015-12-10 Thread Swati Jaiswal

Swati Jaiswal added the comment:

I can help with this. Should I propose the changes I am going to make before 
making them or just create the patch?

--
nosy: +curioswati

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



[issue25822] Add docstrings to fields of urllib.parse results

2015-12-10 Thread Swati Jaiswal

Swati Jaiswal added the comment:

Here is the patch, please review it. Do I need to write any test?

--
keywords: +patch
Added file: http://bugs.python.org/file41283/iss_25822.patch

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



[issue25788] fileinput.hook_encoded has no way to pass arguments to codecs

2015-12-09 Thread Swati Jaiswal

Swati Jaiswal added the comment:

I want to work on this issue. @lac, can you please help as I searched but 
couldn't find the related files. Where can I find the code for this?

--
nosy: +curioswati

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



[issue13317] building with 2to3 generates wrong import paths because build_ext is run after build_py

2015-12-08 Thread Swati Jaiswal

Swati Jaiswal added the comment:

are you working on it @eric?

--
nosy: +curioswati

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