Closed
Description
I found a minor typo here:
https://www.python.org/dev/peps/pep-0554/#passing-objects-via-marshal
In the example code for *Passing objects via marshal", I suspect perhaps an older version of the module API was used (create_fifo()
):
interp = interpreters.create()
r, s = interpreters.create_fifo()
should most likely be:
interp = interpreters.create()
r, s = interpreters.create_channel()
Related comment link: ericsnowcurrently/multi-core-python#20 (comment)
Re: @ericsnowcurrently
I'm preparing a PR for the suggested change.
Metadata
Metadata
Assignees
Labels
No labels