diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-04-04 18:22:09 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-04-04 18:32:51 -0400 |
commit | 3a3feee057933c691e7184ef82c62ec705d4ce78 (patch) | |
tree | a92775a45787e535a7ef2f06ec11230a936b70e0 /test/test_pyrecwrap.jl | |
parent | 9b2d9f990537b8c36c0e3fd936b4ae14b88a59ab (diff) | |
download | PyX.jl-3a3feee057933c691e7184ef82c62ec705d4ce78.tar.gz PyX.jl-3a3feee057933c691e7184ef82c62ec705d4ce78.zip |
pyrecwrap: skip some wrapping as an optimization
This cuts down on the number of wrapped Julia Modules by ~30%. Might not
be worth it.
Diffstat (limited to 'test/test_pyrecwrap.jl')
-rw-r--r-- | test/test_pyrecwrap.jl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pyrecwrap.jl b/test/test_pyrecwrap.jl index cef3f08..6182779 100644 --- a/test/test_pyrecwrap.jl +++ b/test/test_pyrecwrap.jl @@ -1,4 +1,4 @@ -os_test = PyX.pyrecwrap(pyimport("os")) +os_test = PyX.pyrecwrap(pyimport("os"), skiplist=["asdf"]) @test os_test.path.genericpath.os.path.genericpath.os.path.genericpath != nothing |