[Python-Dev] Python related issue

2016-12-22 Thread Manish Singh
Hi All, Please see below issue. Please reply on bug http://bugs.python.org/issue28968 [ Issue ] I have used xml rpc library with transport as http. My client and server are running on same host. Some xml rpc requests fail with connection reset by peer error number. I have used

[Python-Dev] Asking for feedback about fixing `ftplib' (issue25458)

2016-12-22 Thread Ivan Pozdeev via Python-Dev
I'm currently working on http://bugs.python.org/issue25458 . There are a few options there, and each one has drawbacks. So, I'd like to get some feedback on which way is prefereable before working towards any of them and/or other ideas should they arise. The problem and the options are

[Python-Dev] Asking for feedback about fixing `ftplib' (issue25458)

2016-12-22 Thread Ivan Pozdeev via Python-Dev
I'm currently working on http://bugs.python.org/issue25458 . There are a few options there, and each one has drawbacks. So, I'd like to get some feedback on which way is prefereable before working towards any of them and/or other ideas should they arise. The problem and the options are

Re: [Python-Dev] [python-committers] Should I delay 3.5.3 and 3.4.6 by two weeks?

2016-12-22 Thread Larry Hastings
100% of votes cast were for "don't slip", so we won't slip. Retreat! Full steam behind! //arry/ On 12/20/2016 02:25 AM, Matthias Klose wrote: On 19.12.2016 06:26, Larry Hastings wrote: Python 3.6.0 final just slipped by two weeks. I scheduled 3.5.3 and 3.4.6 to ship about a month after

Re: [Python-Dev] PySlice_GetIndicesEx annd stable ABI: bikeshedding

2016-12-22 Thread Serhiy Storchaka
On 22.12.16 12:16, Armin Rigo wrote: On 21 December 2016 at 15:51, Serhiy Storchaka wrote: The code if (PySlice_GetIndicesEx(item, length, , , , ) < 0) return -1; should be replaced with if (foo(item, , , ) < 0) return -1;

Re: [Python-Dev] PySlice_GetIndicesEx annd stable ABI: bikeshedding

2016-12-22 Thread Armin Rigo
Hi Serhiy, On 21 December 2016 at 15:51, Serhiy Storchaka wrote: > The code > > if (PySlice_GetIndicesEx(item, length, > , , , ) < 0) > return -1; > > should be replaced with > > if (foo(item, , , ) < 0) > return -1; > slicelength =