~gmb/zope.testing/make-skips-work-bug-1019275

« back to all changes in this revision

Viewing changes to src/zope/testing/testrunner/runner.py

  • Committer: Brad Crittenden
  • Date: 2012-06-13 14:31:06 UTC
  • mfrom: (37.1.1 p11)
  • Revision ID: bac@canonical.com-20120613143106-975l55xzronpeafn
[r=bac] Revert changes from p9 as not all tests are being run.  See bug 996729.

Show diffs side-by-side

added added

removed removed

Lines of Context:
527
527
    """Sends complete output to queue."""
528
528
 
529
529
    def write(self, out):
530
 
        sys.__stdout__.write(out)
 
530
        sys.stdout.write(out)
531
531
        # Help keep-alive monitors (human or automated) keep up-to-date.
532
 
        sys.__stdout__.flush()
 
532
        sys.stdout.flush()
533
533
 
534
534
 
535
535
_is_dots = re.compile(r'\.+(\r\n?|\n)').match # Windows sneaks in a \r\n.