-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from smurfix/import
Don't try to import a toplevel __init__ module
- Loading branch information
Showing
36 changed files
with
65 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import unittest | ||
import __init__ as _test_multiprocessing | ||
from multiprocess.tests import install_tests_in_module_dict | ||
|
||
from test import support | ||
|
||
if support.PGO: | ||
raise unittest.SkipTest("test is not helpful for PGO") | ||
|
||
_test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') | ||
install_tests_in_module_dict(globals(), 'spawn') | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
Oops, something went wrong.