diff options
| author | Lieuwe <lieuwemo@gmail.com> | 2011-03-18 16:04:51 (GMT) |
|---|---|---|
| committer | Lieuwe <lieuwemo@gmail.com> | 2011-03-18 16:04:51 (GMT) |
| commit | 9c39875ef09d439ef51716dba091188f72977f5e (patch) | |
| tree | fb0fd27a1bcd3e54a1913852c23aa137ee5eb30b /src/python/stdlib/test/outstanding_bugs.py | |
| parent | bc8af4e2101ac93bdc51b59ee64fa43ecb2442f3 (diff) | |
| download | powder-9c39875ef09d439ef51716dba091188f72977f5e.zip powder-9c39875ef09d439ef51716dba091188f72977f5e.tar.gz | |
...
Diffstat (limited to 'src/python/stdlib/test/outstanding_bugs.py')
| -rw-r--r-- | src/python/stdlib/test/outstanding_bugs.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/python/stdlib/test/outstanding_bugs.py b/src/python/stdlib/test/outstanding_bugs.py new file mode 100644 index 0000000..04afcbd --- /dev/null +++ b/src/python/stdlib/test/outstanding_bugs.py @@ -0,0 +1,22 @@ +# +# This file is for everybody to add tests for bugs that aren't +# fixed yet. Please add a test case and appropriate bug description. +# +# When you fix one of the bugs, please move the test to the correct +# test_ module. +# + +import unittest +from test import test_support + +# +# No test cases for outstanding bugs at the moment. +# + + +def test_main(): + #test_support.run_unittest() + pass + +if __name__ == "__main__": + test_main() |
