You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that the data and mask arrays are missing commas.
The issue here is that the detection of a printed array (reinsert commas and retry) only looks at the opening square bracket in the beginning of the string. Thus DTChecker detects it's a masked array, does its .replace(--, 'nan') dance and retries. But data and mask arrays never get their commas reinserted, so the check fails again, detects a masked array and retries again until stopped by a recursion limit.
The text was updated successfully, but these errors were encountered:
DTChecker gets into an infinite loop / hard crash in (observed in
np.ma.__init__
docstring)Note that the
data
andmask
arrays are missing commas.The issue here is that the detection of a printed array (reinsert commas and retry) only looks at the opening square bracket in the beginning of the string. Thus DTChecker detects it's a masked array, does its
.replace(
--, 'nan')
dance and retries. Butdata
andmask
arrays never get their commas reinserted, so the check fails again, detects a masked array and retries again until stopped by a recursion limit.The text was updated successfully, but these errors were encountered: