We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. I ran into an issue when using tomlkit on windows with multiprocessing.
import multiprocessing as mp import tomlkit class Worker: def run(self): print(self.db_conf) print(self.db_conf['path']) # bug here, get() returns None print(self.db_conf.get('path')) if __name__ == '__main__': w = Worker() conf = tomlkit.loads(""" [db] path = '~/files/' """) w.db_conf = conf['db'] p = mp.Process(target=w.run) p.start() p.join()
The output is:
{'path': '~/files/'} ~/files/ None
Somehow Container.get() lost track of the values after pickling into another process. On Linux this script works fine.
Container.get()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi. I ran into an issue when using tomlkit on windows with multiprocessing.
The output is:
Somehow
Container.get()
lost track of the values after pickling into another process. On Linux this script works fine.The text was updated successfully, but these errors were encountered: