@@ -130,10 +130,10 @@ def native_type_range(fmt):
130
130
for fmt in fmtdict ['@' ]:
131
131
fmtdict ['@' ][fmt ] = native_type_range (fmt )
132
132
133
- # Format codes suppported by the memoryview object
133
+ # Format codes supported by the memoryview object
134
134
MEMORYVIEW = NATIVE .copy ()
135
135
136
- # Format codes suppported by array.array
136
+ # Format codes supported by array.array
137
137
ARRAY = NATIVE .copy ()
138
138
for k in NATIVE :
139
139
if not k in "bBhHiIlLfd" :
@@ -168,7 +168,7 @@ def randrange_fmt(mode, char, obj):
168
168
if char == 'c' :
169
169
x = bytes ([x ])
170
170
if obj == 'numpy' and x == b'\x00 ' :
171
- # http ://projects.scipy.org /numpy/ticket/1925
171
+ # https ://github.com /numpy/numpy/issues/2518
172
172
x = b'\x01 '
173
173
if char == '?' :
174
174
x = bool (x )
@@ -1918,7 +1918,7 @@ def test_ndarray_random(self):
1918
1918
if numpy_array :
1919
1919
shape = t [3 ]
1920
1920
if 0 in shape :
1921
- continue # http ://projects.scipy.org /numpy/ticket/1910
1921
+ continue # https ://github.com /numpy/numpy/issues/2503
1922
1922
z = numpy_array_from_structure (items , fmt , t )
1923
1923
self .verify (x , obj = None ,
1924
1924
itemsize = z .itemsize , fmt = fmt , readonly = False ,
@@ -1950,7 +1950,7 @@ def test_ndarray_random_invalid(self):
1950
1950
except Exception as e :
1951
1951
numpy_err = e .__class__
1952
1952
1953
- if 0 : # http ://projects.scipy.org /numpy/ticket/1910
1953
+ if 0 : # https ://github.com /numpy/numpy/issues/2503
1954
1954
self .assertTrue (numpy_err )
1955
1955
1956
1956
def test_ndarray_random_slice_assign (self ):
@@ -1996,7 +1996,7 @@ def test_ndarray_random_slice_assign(self):
1996
1996
1997
1997
if numpy_array :
1998
1998
if 0 in lshape or 0 in rshape :
1999
- continue # http ://projects.scipy.org /numpy/ticket/1910
1999
+ continue # https ://github.com /numpy/numpy/issues/2503
2000
2000
2001
2001
zl = numpy_array_from_structure (litems , fmt , tl )
2002
2002
zr = numpy_array_from_structure (ritems , fmt , tr )
0 commit comments