New submission from Xavier de Gaye:

All the buildbots are currently failing at test_nntplib.
See the errors in attached test_nntplib.log.
The same error messages can be reproduced with a 3.5.2 interpreter:

$ python
Python 3.5.2 (default, Nov  7 2016, 11:31:36)
[GCC 6.2.1 20160830] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from nntplib import NNTP_SSL
>>> s = NNTP_SSL('nntp.aioe.org')
>>> resp, count, first, last, name = s.group('comp.lang.python')
>>> resp, overviews = s.over((last - 1, last))                      # does not 
>>> fail
>>> resp, overviews = s.over((last - 9, last))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.5/nntplib.py", line 831, in over
    resp, lines = self._longcmdstring(cmd, file)
  File "/usr/lib/python3.5/nntplib.py", line 525, in _longcmdstring
    resp, list = self._getlongresp(file)
  File "/usr/lib/python3.5/nntplib.py", line 494, in _getlongresp
    line = self._getline()
  File "/usr/lib/python3.5/nntplib.py", line 434, in _getline
    raise NNTPDataError('line too long')
nntplib.NNTPDataError: line too long
>>> resp, overviews = s.over((last - 1, last))                      # fails now
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.5/nntplib.py", line 831, in over
    resp, lines = self._longcmdstring(cmd, file)
  File "/usr/lib/python3.5/nntplib.py", line 525, in _longcmdstring
    resp, list = self._getlongresp(file)
  File "/usr/lib/python3.5/nntplib.py", line 476, in _getlongresp
    resp = self._getresp()
  File "/usr/lib/python3.5/nntplib.py", line 458, in _getresp
    raise NNTPProtocolError(resp)
nntplib.NNTPProtocolError: 
a657tkkpsmkkozcp9rkpdchwanythhx4xfyllmw...@mail.gmail.com> 
<CANc-5UxXPRF3qYKEmnyDdANoN-5GLiRXDrOU6E=r-8n8zv2...@mail.gmail.com> 
<canc-5uwnfgs4afn5qbwopndtmfxrepjrv4b00_ycgmwaaok...@mail.gmail.com> 
<CANc-5UyhtmjE9rXwhMBx=H9tBmYARhfzVjw2O=ikdmyedcp...@mail.gmail.com> 
<canc-5uyhlp3w8-_d18f8qe-9z0y-dmbuhrmlply10ea52yz...@mail.gmail.com> 
<CANc-5UxQA=-9Q=1GPh+5epX9E3KbAgd6Ye_63=kb55ab-mh...@mail.gmail.com> 
<canc-5uwqkjfxrxs0tvsk6r0krqbr5kiaycxjhut8jpfcyss...@mail.gmail.com>
<CANc-5Uyj9VnJbVGSepVLLHeCgoB9uAOD61Ft4b=bdLTQJ5dE=a...@mail.gmail.com>    
10039   25      Xref: aioe.org comp.lang.python:183369

----------
components: Library (Lib)
files: test_nntplib.log
messages: 283189
nosy: xdegaye, zach.ware
priority: normal
severity: normal
status: open
title: nntplib fails on all buildbots
type: behavior
versions: Python 3.5, Python 3.6, Python 3.7
Added file: http://bugs.python.org/file45897/test_nntplib.log

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue28971>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to