Skip to content

Commit

Permalink
add 'std' in modules for importing
Browse files Browse the repository at this point in the history
rename _python_cppyy -> _cpython_cppyy
  • Loading branch information
wlav committed Jul 21, 2017
1 parent f35d635 commit ae8e15a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/cppyy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
from ._pypy_cppyy import *
del __pypy__
except ImportError:
from ._python_cppyy import *
from ._cpython_cppyy import *


#- allow importing from gbl --------------------------------------------------
import sys
sys.modules['cppyy.gbl'] = gbl
sys.modules['cppyy.gbl.std'] = gbl.std
del sys


Expand Down
File renamed without changes.

0 comments on commit ae8e15a

Please sign in to comment.