diff options
author | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2019-06-01 17:12:29 +0900 |
---|---|---|
committer | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2019-06-01 17:12:29 +0900 |
commit | 984e6d0155cc32b04dda3c1024941681ab20ebf4 (patch) | |
tree | ea709a134db326950610924faa9feb2fd8770219 /numpy | |
parent | 392866d1c8dce0abb8cb327a42f8e134f5d2a05e (diff) | |
download | numpy-984e6d0155cc32b04dda3c1024941681ab20ebf4.tar.gz |
MAINT: Remove version added from Generator
Remove version added from Generator since this makes no sense
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/random/generator.pyx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/random/generator.pyx b/numpy/random/generator.pyx index cb3df2626..e84a98150 100644 --- a/numpy/random/generator.pyx +++ b/numpy/random/generator.pyx @@ -370,9 +370,6 @@ cdef class Generator: name, i.e., 'int64', 'int', etc, so byteorder is not available and a specific precision may have different C types depending on the platform. The default value is 'np.int'. - - .. versionadded:: 1.11.0 - endpoint : bool, optional If true, sample from the interval [low, high] instead of the default [low, high) @@ -508,8 +505,6 @@ cdef class Generator: Generates a random sample from a given 1-D array - .. versionadded:: 1.7.0 - Parameters ---------- a : 1-D array-like or int |