This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Irvin.Probst
Recipients Irvin.Probst
Date 2014-02-14.14:56:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392389766.44.0.393784619009.issue20626@psf.upfronthosting.co.za>
In-reply-to
Content
In the the Manager's lists documentation one can read:

"""
list()
list(sequence)
Create a shared list object and return a proxy for it.
"""

IMHO it is really unclear whether these lists have something more than traditionnal lists or not. 

When you have a look at managers.py it is quite obvious, unless I'm completely wrong, that the underlying shared object is a standard list with a basic proxy to expose all the "underscore underscore stuff".

"""
BaseListProxy = MakeProxyType('BaseListProxy', (
    '__add__', '__contains__', '__delitem__', '__getitem__', '__len__',
    '__mul__', '__reversed__', '__rmul__', '__setitem__',
    'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove',
    'reverse', 'sort', '__imul__'
    ))

class ListProxy(BaseListProxy):
    def __iadd__(self, value):
        self._callmethod('extend', (value,))
        return self
    def __imul__(self, value):
        self._callmethod('__imul__', (value,))
        return self

    [snip a couple of lines]

SyncManager.register('list', list, ListProxy)
"""

That's really confusing because, unless reading managers.py, you have the feeling that the manager's lists() are somehow different than standard lists.

The other problem is that, if you don't know what level of thread-safeness the GIL guarantees on the lists in the manager's server thread, you have the feeling that the safeness comes from some obscure Manager's black magic managing concurrent access for you.

May I suggest to add in the documentation:


1/

"""
list()
list(sequence)
Create a shared list (add here a link to http://docs.python.org/3.3/library/stdtypes.html#list) object and return a proxy for it.
"""

2/ 

Clearly state somewhere in the manager's documentation that it's the developper's job to ensure that the proxied methods are thread safe. Write it in bold and red please :-) 

3/ 
Perhaps add an example with a custom object like the code I attached to this report.


Thanks for your time.
History
Date User Action Args
2014-02-14 14:56:06Irvin.Probstsetrecipients: + Irvin.Probst
2014-02-14 14:56:06Irvin.Probstsetmessageid: <1392389766.44.0.393784619009.issue20626@psf.upfronthosting.co.za>
2014-02-14 14:56:06Irvin.Probstlinkissue20626 messages
2014-02-14 14:56:05Irvin.Probstcreate