[Webkit-unassigned] [Bug 226710] Windows Python 2.7 fails to run-webkit-tests: PicklingError: Can't pickle <class 'webkitpy.common.system.executive.WrappedPopen'>: it's not found as webkitpy.common.system.executive.WrappedPopen

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 7 08:37:56 PDT 2021


https://bugs.webkit.org/show_bug.cgi?id=226710

--- Comment #1 from Jonathan Bedard <jbedard at apple.com> ---
There is probably something on the port object we can't pickle. It's hard for me to fix this without a Windows machine, it's probably pretty straight forward, though (we had a similar problem with the helper object)

I've done this in the past with something like this:

def find_non_pickleable(obj):
    for name, value in obj.__dict__.items():
        try:
            pickle.dumps(obj)
        except pickle.PicklingError:
            print('{} is not pickleable'.format(name))
            find_non_pickleable(obj)

Actually, Sam Sneddon said they might have a partial fix for this somewhere

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210607/cd1db84b/attachment.htm>


More information about the webkit-unassigned mailing list