Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-19 Thread Chris Angelico
On Wed, Oct 20, 2021 at 4:45 AM hongy...@gmail.com wrote: > > On Tuesday, October 19, 2021 at 5:22:25 AM UTC+8, cameron...@gmail.com wrote: > > On 18Oct2021 01:43, Hongyi Zhao wrote: > > >I've written the following python code snippet in pycharm: > > >```python > > >import numpy as np > > >from n

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-19 Thread hongy...@gmail.com
On Tuesday, October 19, 2021 at 5:22:25 AM UTC+8, cameron...@gmail.com wrote: > On 18Oct2021 01:43, Hongyi Zhao wrote: > >I've written the following python code snippet in pycharm: > >```python > >import numpy as np > >from numpy import pi, sin > > > >a = np.array([1], dtype=bool) > >if np.

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-18 Thread hongy...@gmail.com
On Tuesday, October 19, 2021 at 5:22:25 AM UTC+8, cameron...@gmail.com wrote: > On 18Oct2021 01:43, Hongyi Zhao wrote: > >I've written the following python code snippet in pycharm: > >```python > >import numpy as np > >from numpy import pi, sin > > > >a = np.array([1], dtype=bool) > >if np.

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-18 Thread Cameron Simpson
On 18Oct2021 01:43, Hongyi Zhao wrote: >I've written the following python code snippet in pycharm: >```python >import numpy as np >from numpy import pi, sin > >a = np.array([1], dtype=bool) >if np.in|vert(a) == ~a: >print('ok') >``` >When putting the point/cursor in the above code snippet at t