all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Skip to the cpython primitive definition of the function/operation.
@ 2021-10-12 11:53 Hongyi Zhao
  2021-10-12 13:11 ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 4+ messages in thread
From: Hongyi Zhao @ 2021-10-12 11:53 UTC (permalink / raw)
  To: help-gnu-emacs

See the following testing in ipython:

$ ipython
In [1]: import numpy as np

In [2]: a=np.array([1] ,dtype=bool)

In [3]: a
Out[3]: array([ True])

In [4]: ~a
Out[4]: array([False])

In [5]: np.invert(a)
Out[5]: array([False])

In [6]:


So, I want to confirm the equivalence of the np.invert and ~ operators
by inspecting the corresponding cpython primitive definition. Is there
a way for me to skip to them from the python script opened in Emacs?

Regards
-- 
Assoc. Prof. Hongyi Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
No. 473, Quannan West Street, Xindu District, Xingtai, Hebei province



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Skip to the cpython primitive definition of the function/operation.
  2021-10-12 11:53 Skip to the cpython primitive definition of the function/operation Hongyi Zhao
@ 2021-10-12 13:11 ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-13  2:48   ` Hongyi Zhao
  0 siblings, 1 reply; 4+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-12 13:11 UTC (permalink / raw)
  To: help-gnu-emacs

Hongyi Zhao wrote:

> So, I want to confirm the equivalence of the np.invert and ~
> operators by inspecting the corresponding cpython primitive
> definition. Is there a way for me to skip to them from the
> python script opened in Emacs?

anaconda-mode ... maybe

elpy ...

So much Python!

M-x list-packages RET

https://dataswamp.org/~incal/emacs-init/elpa.el

-- 
underground experts united
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Skip to the cpython primitive definition of the function/operation.
  2021-10-12 13:11 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-13  2:48   ` Hongyi Zhao
  2021-10-13 22:58     ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 4+ messages in thread
From: Hongyi Zhao @ 2021-10-13  2:48 UTC (permalink / raw)
  To: Emanuel Berg, help-gnu-emacs

On Tue, Oct 12, 2021 at 9:16 PM Emanuel Berg via Users list for the
GNU Emacs text editor <help-gnu-emacs@gnu.org> wrote:
>
> Hongyi Zhao wrote:
>
> > So, I want to confirm the equivalence of the np.invert and ~
> > operators by inspecting the corresponding cpython primitive
> > definition. Is there a way for me to skip to them from the
> > python script opened in Emacs?
>
> anaconda-mode ... maybe

I've filed the relevant issues:

https://github.com/pythonic-emacs/anaconda-mode/issues/417
https://github.com/emacs-lsp/lsp-mode/issues/3147

> elpy ...

I've tried this before, but it doesn’t seem to have this feature.

BTW, the more powerful IDE-like Emacs environment can be achieved by
lsp-mode and dap-mode, which is just the combination I'm using
currently.

> So much Python!
>
> M-x list-packages RET
>
> https://dataswamp.org/~incal/emacs-init/elpa.el

I use straight, which already includes all these repositories and many
more, as noted below:

https://github.com/raxod502/straight.el/blob/af5437f2afd00936c883124d6d3098721c2d306c/straight.el#L15

;; straight.el is a next-generation package manager for Emacs. It
;; clones packages into your ~/.emacs.d and handles byte-compilation,
;; autoload generation, and load path management. Dependency
;; management, powerful tools for managing your packages in bulk, and
;; out-of-the-box compatibility with MELPA, GNU ELPA, and Emacsmirror
;; are also included.


HZ



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Skip to the cpython primitive definition of the function/operation.
  2021-10-13  2:48   ` Hongyi Zhao
@ 2021-10-13 22:58     ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 4+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-13 22:58 UTC (permalink / raw)
  To: help-gnu-emacs

Hongyi Zhao wrote:

> ;; straight.el is a next-generation package manager for Emacs. It
> ;; clones packages into your ~/.emacs.d and handles byte-compilation,
> ;; autoload generation, and load path management. Dependency
> ;; management, powerful tools for managing your packages in bulk, and
> ;; out-of-the-box compatibility with MELPA, GNU ELPA, and Emacsmirror
> ;; are also included

Haha!

Maybe it'll be included in vanilla Emacs some day ...

-- 
underground experts united
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-13 22:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-12 11:53 Skip to the cpython primitive definition of the function/operation Hongyi Zhao
2021-10-12 13:11 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-13  2:48   ` Hongyi Zhao
2021-10-13 22:58     ` Emanuel Berg via Users list for the GNU Emacs text editor

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.