Issues (38)

nptyping/__init__.py (1 issue)

1
from nptyping._meta import __version__
0 ignored issues
show
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
from nptyping.functions._get_type import get_type
3
from nptyping.functions._py_type import py_type
4
from nptyping.types._bool import Bool
5
from nptyping.types._complex import Complex128
6
from nptyping.types._datetime64 import Datetime64
7
from nptyping.types._ndarray import NDArray
8
from nptyping.types._nptype import NPType
9
from nptyping.types._number import (
10
    DEFAULT_FLOAT_BITS,
11
    DEFAULT_INT_BITS,
12
    Float,
13
    Float16,
14
    Float32,
15
    Float64,
16
    Int,
17
    Int8,
18
    Int16,
19
    Int32,
20
    Int64,
21
    Number,
22
    UInt,
23
    UInt8,
24
    UInt16,
25
    UInt32,
26
    UInt64,
27
)
28
from nptyping.types._object import Object
29
from nptyping.types._structured_type import StructuredType
30
from nptyping.types._subarray_type import SubArrayType
31
from nptyping.types._timedelta64 import Timedelta64
32
from nptyping.types._unicode import Unicode
33