summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PathBrowser.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-05-28 01:33:40 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-05-28 01:33:40 (GMT)
commit667a03b292e881f1ab0d0dba181868200d2abaf9 (patch)
tree9eb17a58fb25b66234f67c4c2de6d960456fecb5 /Lib/idlelib/PathBrowser.py
parentfc508dd608ba151d1446457c4c1bb2838e0deef9 (diff)
parentdb4e5c53c9a68cbb19a8daca0c454360d1045c6f (diff)
downloadcpython-667a03b292e881f1ab0d0dba181868200d2abaf9.zip
cpython-667a03b292e881f1ab0d0dba181868200d2abaf9.tar.gz
cpython-667a03b292e881f1ab0d0dba181868200d2abaf9.tar.bz2
Merge with 3.3
Diffstat (limited to 'Lib/idlelib/PathBrowser.py')
-rw-r--r--Lib/idlelib/PathBrowser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/PathBrowser.py b/Lib/idlelib/PathBrowser.py
index ab05c67..8ea553d 100644
--- a/Lib/idlelib/PathBrowser.py
+++ b/Lib/idlelib/PathBrowser.py
@@ -95,4 +95,5 @@ def main():
mainloop()
if __name__ == "__main__":
- main()
+ from unittest import main
+ main('idlelib.idle_test.test_pathbrowser', verbosity=2, exit=False)