| Revision 34,
296 bytes
checked in by xi, 7 years ago
(diff) |
|
Release the GIL before doing blocking calls (fix #35).
Note that this fix makes _syck incompatible with Python 2.2 and earlier.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | import unittest |
|---|
| 3 | |
|---|
| 4 | from test_node import * |
|---|
| 5 | from test_parser import * |
|---|
| 6 | from test_loader import * |
|---|
| 7 | from test_emitter import * |
|---|
| 8 | from test_dumper import * |
|---|
| 9 | from test_pickle import * |
|---|
| 10 | from test_threads import * |
|---|
| 11 | |
|---|
| 12 | def main(module='__main__'): |
|---|
| 13 | unittest.main(module) |
|---|
| 14 | |
|---|
| 15 | if __name__ == '__main__': |
|---|
| 16 | main() |
|---|
| 17 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.