[issue20633] SystemError: Parent module 'multiprocessing' not loaded, cannot perform relative import

2014-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b2814fc53ae by Richard Oudkerk in branch '3.3': Issue #20633: Replace relative import by absolute import. http://hg.python.org/cpython/rev/0b2814fc53ae -- nosy: +python-dev ___ Python tracker

[issue20633] SystemError: Parent module 'multiprocessing' not loaded, cannot perform relative import

2014-03-23 Thread Richard Oudkerk
Changes by Richard Oudkerk shibt...@gmail.com: -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20633 ___

[issue20633] SystemError: Parent module 'multiprocessing' not loaded, cannot perform relative import

2014-03-01 Thread Richard Oudkerk
Changes by Richard Oudkerk shibt...@gmail.com: -- assignee: - sbt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20633 ___ ___ Python-bugs-list

[issue20633] SystemError: Parent module 'multiprocessing' not loaded, cannot perform relative import

2014-02-15 Thread Amr Ali
New submission from Amr Ali: Using `multiprocessing.Manager` to share a `dict` between two processes raises the below exception at main process termination. Child process is joined and terminates gracefully before the main process. Replacing multiprocessing/forking.py:135 with `from

[issue20633] SystemError: Parent module 'multiprocessing' not loaded, cannot perform relative import

2014-02-15 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +brett.cannon type: crash - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20633 ___

[issue20633] SystemError: Parent module 'multiprocessing' not loaded, cannot perform relative import

2014-02-15 Thread Amr Ali
Amr Ali added the comment: Also importing `multiprocessing.forking` at the very beginning of MyLib/__init__.py fixes the problem. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20633 ___