Why is debugging in eclipse/pydev so slow for my python program?

前端 未结 2 1442
臣服心动
臣服心动 2021-01-02 13:58

I have a relatively simple (no classes) python 2.7 program. The first thing the program does is read an sqlite dbase into a dictionary. The database is large, but not huge,

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-02 14:33

    I simply commented this line out:

    np.set_printoptions(threshold = 'nan')
    

    It seems eclipse is trying to keep up with too much information.

提交回复
热议问题