(add-hook 'rope-open-project-hook 'ac-nropemacs-setup)
does not work. The ropemacs sources that are cloned with this do not seem to have this hook. The github source that you link to for rope + auto-complete integration has the following in ropemacs
def project_opened(self):
'''
This method is called when a new project is opened, it runs
the hooks associated with rope-open-project-hook.
'''
lisp.run_hooks(lisp["rope-open-project-hook"])
Following work-around makes auto-complete work :
(add-hook 'python-mode-hook 'ac-nropemacs-setup)
does not work. The ropemacs sources that are cloned with this do not seem to have this hook. The github source that you link to for rope + auto-complete integration has the following in ropemacs
Following work-around makes auto-complete work :