Skip to content

Commit 78bba69

Browse files
alexfiklinducer
authored andcommitted
remove deprecated usage of longfloat and longcomplex
1 parent 534b40f commit 78bba69

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pytools/test/test_persistent_dict.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -408,16 +408,12 @@ def test_scalar_hashing():
408408
assert keyb(np.float64(1.1)) == keyb(np.float64(1.1))
409409
if hasattr(np, "float128"):
410410
assert keyb(np.float128(1.1)) == keyb(np.float128(1.1))
411-
412-
assert keyb(np.longfloat(1.1)) == keyb(np.longfloat(1.1))
413411
assert keyb(np.longdouble(1.1)) == keyb(np.longdouble(1.1))
414412

415413
assert keyb(np.complex64(1.1+2.2j)) == keyb(np.complex64(1.1+2.2j))
416414
assert keyb(np.complex128(1.1+2.2j)) == keyb(np.complex128(1.1+2.2j))
417415
if hasattr(np, "complex256"):
418416
assert keyb(np.complex256(1.1+2.2j)) == keyb(np.complex256(1.1+2.2j))
419-
420-
assert keyb(np.longcomplex(1.1+2.2j)) == keyb(np.longcomplex(1.1+2.2j))
421417
assert keyb(np.clongdouble(1.1+2.2j)) == keyb(np.clongdouble(1.1+2.2j))
422418

423419

0 commit comments

Comments
 (0)