[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-10-01 Thread STINNER Victor
STINNER Victor added the comment: I pushed different regrtest bugfixes. The situation should now be less worse. I close the issue. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-17 Thread STINNER Victor
STINNER Victor added the comment: > https://buildbot.python.org/all/#/builders/225/builds/239 I forgot to mention the buildbot name: AMD64 FreeBSD 10-STABLE Non-Debug 3.8. > It may be a regression caused by bpo-37531. > (...) > So main_process could be max(PROGRESS_UPDATE, PROGRESS_MIN_TIME)

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: > https://buildbot.python.org/all/#/builders/225/builds/239 This bug only occurred once, the next build (240) was fine. -- ___ Python tracker

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: > command timed out: 1200 seconds without output running ['make', > 'buildbottest', 'TESTOPTS=-j2 -j4 ${BUILDBOT_TESTOPTS}', 'TESTPYTHONOPTS=', > 'TESTTIMEOUT=900'], attempting to kill faulthandler is supposed to display the traceback where the test hangs,

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-16 Thread STINNER Victor
Result is not displayed and the process hangs versions: Python 3.8 ___ Python tracker <https://bugs.python.org/issue38190> ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: Result is not Displayed

2016-11-22 Thread Peter Otten
prihantoro2...@gmail.com wrote: > Dear all, > > i am new to Python and have this problem > > = > import nltk > puzzle_letters = nltk.FreqDist('egivrvonl') > obligatory = 'r' > wordlist = nltk.corpus.words.words() > [w for w in wordlist if len(w) >= 6 > and obligatory in w > and

Re: Result is not Displayed

2016-11-22 Thread Irmen de Jong
On 22-11-2016 9:18, prihantoro2...@gmail.com wrote: > Dear all, > > i am new to Python and have this problem > > = > import nltk > puzzle_letters = nltk.FreqDist('egivrvonl') > obligatory = 'r' > wordlist = nltk.corpus.words.words() > [w for w in wordlist if len(w) >= 6 > and obligatory in

Result is not Displayed

2016-11-22 Thread prihantoro2001
Dear all, i am new to Python and have this problem = import nltk puzzle_letters = nltk.FreqDist('egivrvonl') obligatory = 'r' wordlist = nltk.corpus.words.words() [w for w in wordlist if len(w) >= 6 and obligatory in w and nltk.FreqDist(w) <= puzzle_letters] print puzzle_letters ==