Python modulefinder.py() Examples

The following are 1 code examples of modulefinder.py(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module modulefinder , or try the search function .
Example #1
Source File: test_modulefinder.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def test_extended_opargs(self):
        extended_opargs_test = [
            "a",
            ["a", "b"],
            [], [],
            """\
a.py
                                %r
                                import b
b.py
""" % range(2**16)]  # 2**16 constants
        self._do_test(extended_opargs_test)