Re: [U-Boot] [PATCH v2 07/10] patman: Fix doctest StringIO import for python 3.x

2016-10-05 Thread Simon Glass
On 27 September 2016 at 11:55, Simon Glass wrote: > On 27 September 2016 at 09:03, Paul Burton wrote: >> In python 3.x StringIO is no longer a module, and the class can instead >> be found in the io module. Adjust the code in the doctest input to >> account for both. >> >> Signed-off-by: Paul Bur

Re: [U-Boot] [PATCH v2 07/10] patman: Fix doctest StringIO import for python 3.x

2016-09-27 Thread Simon Glass
On 27 September 2016 at 09:03, Paul Burton wrote: > In python 3.x StringIO is no longer a module, and the class can instead > be found in the io module. Adjust the code in the doctest input to > account for both. > > Signed-off-by: Paul Burton > > --- > > Changes in v2: > - New patch, need found

[U-Boot] [PATCH v2 07/10] patman: Fix doctest StringIO import for python 3.x

2016-09-27 Thread Paul Burton
In python 3.x StringIO is no longer a module, and the class can instead be found in the io module. Adjust the code in the doctest input to account for both. Signed-off-by: Paul Burton --- Changes in v2: - New patch, need found by running --test. tools/patman/settings.py | 13 - 1