forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
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 numpy#28035 from mtsokol/refactor-lib-and-ctypeslib
MAINT: Move `lib.format` and `ctypeslib` to submodules/private files
- Loading branch information
Showing
16 changed files
with
1,173 additions
and
1,049 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from ._ctypeslib import ( | ||
__all__, | ||
__doc__, | ||
as_array, | ||
as_ctypes, | ||
as_ctypes_type, | ||
ctypes, | ||
c_intp, | ||
load_library, | ||
ndpointer, | ||
_concrete_ndptr, | ||
_ndptr, | ||
) |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import ctypes | ||
from ctypes import c_int64 as _c_intp | ||
|
||
from ._ctypeslib import ( | ||
__all__ as __all__, | ||
__doc__ as __doc__, | ||
as_array as as_array, | ||
as_ctypes as as_ctypes, | ||
as_ctypes_type as as_ctypes_type, | ||
c_intp as c_intp, | ||
load_library as load_library, | ||
ndpointer as ndpointer, | ||
_concrete_ndptr as _concrete_ndptr, | ||
_ndptr as _ndptr, | ||
) |
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
File renamed without changes.
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
Oops, something went wrong.