[issue46535] Possible bug: pdb causes exception

2022-01-27 Thread Stefan Ecklebe
Change by Stefan Ecklebe : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue46535] Possible bug: pdb causes exception

2022-01-26 Thread Stefan Ecklebe
New submission from Stefan Ecklebe : Consider a script called snippet.py, containing the lines -- import numpy as np import pandas as pd np.finfo(float) idx = pd.MultiIndex.from_tuples([(1, 2)]) np.finfo(float) print("Done") -