Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

""" 

**Note:** almost all functions in the ``numpy.lib`` namespace 

are also present in the main ``numpy`` namespace. Please use the 

functions as ``np.<funcname>`` where possible. 

 

``numpy.lib`` is mostly a space for implementing functions that don't 

belong in core or in another NumPy submodule with a clear purpose 

(e.g. ``random``, ``fft``, ``linalg``, ``ma``). 

 

Most contains basic functions that are used by several submodules and are 

useful to have in the main name-space. 

 

""" 

import math 

 

from numpy.version import version as __version__ 

 

# Public submodules 

# Note: recfunctions and (maybe) format are public too, but not imported 

from . import mixins 

from . import scimath as emath 

 

# Private submodules 

from .type_check import * 

from .index_tricks import * 

from .function_base import * 

from .nanfunctions import * 

from .shape_base import * 

from .stride_tricks import * 

from .twodim_base import * 

from .ufunclike import * 

from .histograms import * 

 

from .polynomial import * 

from .utils import * 

from .arraysetops import * 

from .npyio import * 

from .financial import * 

from .arrayterator import Arrayterator 

from .arraypad import * 

from ._version import * 

from numpy.core._multiarray_umath import tracemalloc_domain 

 

__all__ = ['emath', 'math', 'tracemalloc_domain', 'Arrayterator'] 

__all__ += type_check.__all__ 

__all__ += index_tricks.__all__ 

__all__ += function_base.__all__ 

__all__ += shape_base.__all__ 

__all__ += stride_tricks.__all__ 

__all__ += twodim_base.__all__ 

__all__ += ufunclike.__all__ 

__all__ += arraypad.__all__ 

__all__ += polynomial.__all__ 

__all__ += utils.__all__ 

__all__ += arraysetops.__all__ 

__all__ += npyio.__all__ 

__all__ += financial.__all__ 

__all__ += nanfunctions.__all__ 

__all__ += histograms.__all__ 

 

from numpy._pytesttester import PytestTester 

test = PytestTester(__name__) 

del PytestTester