This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author schlamar
Recipients schlamar
Date 2014-03-17.09:53:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395049982.29.0.218161490616.issue20954@psf.upfronthosting.co.za>
In-reply-to
Content
This comes from http://bugs.python.org/issue12098. Python 3.3 is affected, too.

Reproduction can be minimized by running the following script:


import multiprocessing


def main():
    p = multiprocessing.Process(target=lambda: None)
    p.start()
    p.join()


if __name__ == '__main__':
    main()

as

$ PYTHONHASHSEED=2147483647 python test.py
Traceback (most recent call last):
  File "test.py", line 12, in <module>
    main()
  File "test.py", line 7, in main
    p.start()
  File "c:\Python27\lib\multiprocessing\process.py", line 130, in start
    self._popen = Popen(self)
  File "c:\Python27\lib\multiprocessing\forking.py", line 258, in __init__
    cmd = get_command_line() + [rhandle]
  File "c:\Python27\lib\multiprocessing\forking.py", line 364, in get_command_line
    opts = util._args_from_interpreter_flags()
  File "c:\Python27\lib\subprocess.py", line 508, in _args_from_interpreter_flags
    args.append('-' + opt * v)
MemoryError
History
Date User Action Args
2014-03-17 09:53:02schlamarsetrecipients: + schlamar
2014-03-17 09:53:02schlamarsetmessageid: <1395049982.29.0.218161490616.issue20954@psf.upfronthosting.co.za>
2014-03-17 09:53:02schlamarlinkissue20954 messages
2014-03-17 09:53:02schlamarcreate