我们从Python开源项目中,提取了以下6个代码示例,用于说明如何使用numpy.add_newdoc()。
def test_add_doc(self): # test np.add_newdoc tgt = "Current flat index into the array." self.assertEqual(np.core.flatiter.index.__doc__[:len(tgt)], tgt) self.assertTrue(len(np.core.ufunc.identity.__doc__) > 300) self.assertTrue(len(np.lib.index_tricks.mgrid.__doc__) > 300)