[issue14301] xmlrpc client transport and threading problem

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue14301] xmlrpc client transport and threading problem

2015-02-12 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: -demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue14301] xmlrpc client transport and threading problem

2014-07-21 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: +demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue14301] xmlrpc client transport and threading problem

2014-07-03 Thread Mark Lawrence
Mark Lawrence added the comment: @Kees sorry for the delay in getting back to you. @Martin can you comment on this please. -- components: +Library (Lib) -None nosy: +BreamoreBoy, loewis ___ Python tracker

[issue14301] xmlrpc client transport and threading problem

2012-03-14 Thread Kees Bos
New submission from Kees Bos : The transport (second parameter to ServerProxy) must be unique for every thread. This was not the case in pre-python2.7. It is caused by the reuse of the connection (stored in _connection). This could be handled by saving the thread id too. I don't know whether