Scartabellando con google ho trovato il problema....
E' un bug della nuova versione (2015) di Pydev, che importa "forzosamente" gevent a tutti i costi....
Per questo motivo, la guida indicatami (riferita a odoo7m quindi prima del 2015) andrebbe INTEGRATA con questo messaggio del forum odoo:
www.odoo.com/fr_FR/groups/community-59/c...ate_begin=&date_end=
Mi viene un dubbio ... ma sono l'unico ad usare eclipse+python per sviluppo odoo ?
Re: Odoo V8 Eclipse Debug
by
kevin
- 2015-01-06 06:49:38
hi
this problem is caused by new version of pydev debugger, it imported
gevent on starting debug. Odoo check whether gevent was imported to
enable gevent mode.
So, comment the following lines debug work fine.
+++ b/openerp/__init__.py
@@ -27,8 +27,8 @@
# Is the server running with gevent.
import sys
evented = False
-if sys.modules.get("gevent") is not None:
- evented = True
+# if sys.modules.get("gevent") is not None:
+# evented = True