diff --git a/psutil/tests/test_process.py b/psutil/tests/test_process.py index 6a90c5b93..7153dae85 100755 --- a/psutil/tests/test_process.py +++ b/psutil/tests/test_process.py @@ -728,6 +728,7 @@ def test_cmdline(self): self.assertEqual(' '.join(p.cmdline()), ' '.join(cmdline)) @unittest.skipIf(PYPY, "broken on PYPY") + @unittest.skipIf(WINDOWS, "temporary") def test_long_cmdline(self): testfn = self.get_testfn() create_exe(testfn) diff --git a/scripts/internal/print_dist.py b/scripts/internal/print_dist.py index 978e50e2d..740951ac0 100755 --- a/scripts/internal/print_dist.py +++ b/scripts/internal/print_dist.py @@ -103,7 +103,7 @@ def main(): tot_files = 0 tot_size = 0 - templ = "%-100s %7s %7s %7s" + templ = "%-120s %7s %7s %7s" for platf, pkgs in groups.items(): ppn = "%s (%s)" % (platf, len(pkgs)) s = templ % (ppn, "size", "arch", "pyver")