File tree Expand file tree Collapse file tree 4 files changed +605
-20
lines changed Expand file tree Collapse file tree 4 files changed +605
-20
lines changed Original file line number Diff line number Diff line change 1919import  numpy  as  np 
2020
2121__all__  =  (
22+     'array_API_support' 
2223    'set' ,
2324    'space' ,
2425    'operator' ,
5859from  .operator  import  * 
5960from  .set  import  * 
6061from  .space  import  * 
62+ from  .array_API_support  import  * 
6163
6264# More "advanced" subpackages keep their namespaces separate from top-level, 
6365# we only import the modules themselves 
7981__all__  +=  operator .__all__ 
8082__all__  +=  set .__all__ 
8183__all__  +=  space .__all__ 
84+ __all__  +=  array_API_support .__all__ 
8285__all__  +=  ('test' ,)
Original file line number Diff line number Diff line change 1+ # Copyright 2014-2025 The ODL contributors 
2+ # 
3+ # This file is part of ODL. 
4+ # 
5+ # This Source Code Form is subject to the terms of the Mozilla Public License, 
6+ # v. 2.0. If a copy of the MPL was not distributed with this file, You can 
7+ # obtain one at https://mozilla.org/MPL/2.0/. 
8+ 
9+ """Python Array API support.""" 
10+ 
11+ from  __future__ import  absolute_import 
12+ 
13+ from  .element_wise  import  * 
14+ 
15+ __all__  =  ()
16+ __all__  +=  element_wise .__all__ 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments