¿Cómo obligar a un shell de Python a volver a importar módulos cuando se ejecuta un búfer?


9

Estoy usando Cc Cc para enviar un búfer a un shell de Python. El búfer tiene una importación al principio. Descubrí que si modifico el módulo que estoy importando, no refleja los cambios si vuelvo a ejecutar el búfer con Cc Cc (parece que Inferior Python está importando solo una vez).

¿Cómo puedo forzar al shell de Python para que vuelva a importar los módulos ya llamados en la primera ejecución del búfer?

Respuestas:



4

Este es mi flujo de trabajo. Configuré emacs para usar ipython

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

Luego, en ~ / .ipython / profile_default / startup / 00-ipython_init.py pongo lo siguiente:

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

Luego escribo esto cada vez que modifico y quiero volver a cargar mis módulos en ipython. Me gusta porque funciona para todos los módulos y no tengo que preocuparme por las dependencias de importación.

%autoreload

1

Puede hacerlo modificando la ejecución de python y forzando el proceso de Python para 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


Maravillosa solución! Me salvaste unas horas! ¡Gracias!
DmitrySemenov
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.