8000 Relocate dynamic propagation of registry to Python namespaces by insertinterestingnamehere · Pull Request #742 · libdynd/dynd-python · GitHub
[go: up one dir, main page]

Skip to content

Relocate dynamic propagation of registry to Python namespaces #742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Move dynamic propagation of registry into Python namespaces out of
the main dynd namespace.
This is primarily a stopgap to get the CI tests working again
before moving this registration code into the type portion of
dynd-python.
  • Loading branch information
insertinterestingnamehere committed Sep 21, 2016
commit 584c462046b5937dad4fab1072fed3bc0a890796
4 changes: 0 additions & 4 deletions dynd/__init__.py
915D
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,3 @@
'__libdynd_version__', '__version__', '__libdynd_git_sha1__', '__git_sha1__',
'annotate', 'test', 'load'
]

from .nd.registry import propagate_all

propagate_all()
8 changes: 6 additions & 2 deletions dynd/nd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
parse_json, squeeze, dtype_of, old_linspace, fields, ndim_of
from .callable import callable

from . import functional

from .registry import propagate_all

propagate_all()

inf = float('inf')
nan = float('nan')

from . import functional
0