Comment 1 for bug 1119201

Revision history for this message
Alexander Boettcher (alexander-boettcher) wrote : Re: org-mode session:

This patch got sessions working for me:

=== modified file 'python-mode.el'
--- python-mode.el 2013-02-15 19:59:16 +0000
+++ python-mode.el 2013-02-24 12:01:38 +0000
@@ -1692,7 +1692,8 @@
         (define-key map [tab] 'py-complete-function)
       (define-key map [tab] 'py-completion-at-point))
     (define-key map "\C-c-" 'py-up-exception)
- (define-key map "\C-c=" 'py-down-exception)))
+ (define-key map "\C-c=" 'py-down-exception)
+ map))

 (defvar py-menu)

Please check if it solves your issues, too. (You can simple add the word "map" manually in python-mode.el at the position shown above.)