Como forçar um shell Python a reimportar módulos ao executar um buffer?


9

Estou usando Cc Cc para enviar um buffer para um shell Python. O buffer tem uma importação no início. Descobri que se eu modificar o módulo que estou importando, ele não refletirá as alterações se eu executar o buffer novamente com Cc Cc (parece que o Python inferior está fazendo a importação apenas uma vez).

Como forçar o shell Python a importar novamente os módulos já chamados na primeira execução do buffer?

Respostas:



4

Este é o meu fluxo de trabalho. Eu configurei o emacs para usar o ipython

(setq
 python-shell-interpreter "ipython3"
 python-shell-interpreter-args "--simple-prompt --pprint")

Então em ~ / .ipython / profile_default / startup / 00-ipython_init.py, coloquei o seguinte:

ip = get_ipython()
ip.magic('load_ext autoreload')

Então digito isso sempre que modifico e quero recarregar meus módulos no ipython. Eu gosto disso porque funciona para todos os módulos e não preciso me preocupar com dependências de importação.

%autoreload

1

Você pode fazer isso modificando o python-run e forçando o processo Python a reiniciar:

;; Run python and pop-up its shell.
;; Kill process to solve the reload modules problem.
(defun my-python-shell-run ()
  (interactive)
  (when (get-buffer-process "*Python*")
     (set-process-query-on-exit-flag (get-buffer-process "*Python*") nil)
     (kill-process (get-buffer-process "*Python*"))
     ;; Uncomment If you want to clean the buffer too.
     ;;(kill-buffer "*Python*")
     ;; Not so fast!
     (sleep-for 0.5))
  (run-python (python-shell-parse-command) nil nil)
  (python-shell-send-buffer)
  ;; Pop new window only if shell isnt visible
  ;; in any frame.
  (unless (get-buffer-window "*Python*" t) 
    (python-shell-switch-to-shell)))

(defun my-python-shell-run-region ()
  (interactive)
  (python-shell-send-region (region-beginning) (region-end))
  (python-shell-switch-to-shell))

(eval-after-load "python"
  '(progn
     (define-key python-mode-map (kbd "C-c C-c") 'my-python-shell-run)
     (define-key python-mode-map (kbd "C-c C-r") 'my-python-shell-run-region)
     (define-key python-mode-map (kbd "C-h f") 'python-eldoc-at-point)))

http://lgmoneda.github.io/2017/02/19/emacs-python-shell-config-eng.html


Solução maravilhosa! Você me salvou algumas horas! Obrigado!
DmitrySemenov
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.