[issue17560] problem using multiprocessing with really big objects?

2017-03-12 Thread artxyz
artxyz added the comment: @davin Thanks for your answer! I will update to the current version. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue17560] problem using multiprocessing with really big objects?

2017-03-12 Thread artxyz
artxyz added the comment: This is still an issue in Python 2.7.5 Will it be fixed? -- nosy: +artxyz ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28241] Nested fuctions Unexpected behaviour when stored in a list and called after.

2016-09-21 Thread artxyz
artxyz added the comment: I got it now. Thanks! -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28241> ___ ___ Python-bugs-list

[issue28241] Nested fuctions Unexpected behaviour when stored in a list and called after.

2016-09-21 Thread artxyz
New submission from artxyz: Python 2.7.11 GCC 4.8.4 Getting weird results when define a nested function in a loop and store them in a list x = list() for i in xrange(5): def FUN(): print i x.append(FUN) Calling functions from list using index works fine