[issue17888] docs: more information on documentation team

2016-06-03 Thread Laura Rupprecht

Laura Rupprecht added the comment:

I've updated the patch from Terry with Berker's suggestion.

--
nosy: +laura
Added file: http://bugs.python.org/file43162/issue17888_2.patch

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



[issue9858] Python and C implementations of io are out of sync

2015-05-20 Thread Laura Rupprecht

Laura Rupprecht added the comment:

Can anyone provide feedback on this patch?

--

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



[issue9858] Python and C implementations of io are out of sync

2015-04-27 Thread Laura Rupprecht

Laura Rupprecht added the comment:

There were originally three methods present in RawIOBase that were not present 
in PyRawIOBase_Type:

1. readinto
2. write
3. __weakref__

I've created a patch that adds the first two to PyRawIOBase_Type. The python 
class readinto and write methods raise UnsupportedOperation, so the c methods 
return a PyExc_NotImplementedError.

The next major question I have is whether we need to implement a __weakref__ 
method or this should be ignored in the test.

--
keywords: +patch
nosy: +laura
Added file: http://bugs.python.org/file39212/issue9858.patch

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



[issue9859] Add tests to verify API match of modules with 2 implementations

2015-04-14 Thread Laura Rupprecht

Laura Rupprecht added the comment:

Created a patch to check whether classes define the same attributes.

This adds a test for RawIOBase, where Python and and C implementations are out 
of sync, but skips one of the tests as the issue (issue9858) is still 
outstanding.

--
keywords: +patch
nosy: +laura
Added file: http://bugs.python.org/file38993/issue9859.patch

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



[issue9859] Add tests to verify API match of modules with 2 implementations

2015-04-14 Thread Laura Rupprecht

Laura Rupprecht added the comment:

Thanks Berker!

I've added some updates to the patch taking your suggestions into account. 
There is also a change from using detect_module_matches to 
detect_api_mismatch, as it is a more general (and accurate) description.

Also, adding tests for the detect_api_mismatch helper function.

--
Added file: http://bugs.python.org/file39007/issue9859_1.patch

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



[issue9731] Add ABCMeta.has_methods and tests that use it

2015-04-14 Thread Laura Rupprecht

Laura Rupprecht added the comment:

Related item: Added a helper function to verify API match of two modules, 
addressing issue9859.

It checks for a closer match but mentioned this ticket from the thread.

--
nosy: +laura

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