[issue26049] Poor performance when reading large xmlrpc data

2016-01-08 Thread Sergi Almacellas Abellana
Sergi Almacellas Abellana added the comment: I added a new patch which fixed comments -- Added file: http://bugs.python.org/file41536/default.patch ___ Python tracker <http://bugs.python.org/issue26

[issue26049] Poor performance when reading large xmlrpc data

2016-01-08 Thread Sergi Almacellas Abellana
Changes by Sergi Almacellas Abellana : Removed file: http://bugs.python.org/file41534/default.patch ___ Python tracker <http://bugs.python.org/issue26049> ___ ___ Pytho

[issue26049] Poor performance when reading large xmlrpc data

2016-01-08 Thread Sergi Almacellas Abellana
Sergi Almacellas Abellana added the comment: I attach a patch to fix on default series -- keywords: +patch Added file: http://bugs.python.org/file41534/default.patch ___ Python tracker <http://bugs.python.org/issue26

[issue26049] Poor performance when reading large xmlrpc data

2016-01-08 Thread Sergi Almacellas Abellana
Sergi Almacellas Abellana added the comment: And Also another patch for 2.7 branches -- Added file: http://bugs.python.org/file41535/python27.patch ___ Python tracker <http://bugs.python.org/issue26

[issue26049] Poor performance when reading large xmlrpc data

2016-01-08 Thread Sergi Almacellas Abellana
New submission from Sergi Almacellas Abellana: By default, python xmlrpclib parser reads data by chunks of 1024 bytes [1], which leads to a lot of data concatenations when reading large data, which is very slow in python. Increasing the chuck size from 1024 bytes to a higher value makes