Changes between Initial Version and Version 1 of Ticket #45310, comment 13


Ignore:
Timestamp:
Nov 15, 2018, 3:13:58 AM (5 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45310, comment 13

    initial v1  
    11I had the exact same problem with py34-pyobjc and py34-pyobjc-cocoa. My fix was to replace:
    22
     3{{{
    34result[fn] = 1
     5}}}
    46
    57with
    68
     9{{{
    710result.add(fn)
     11}}}
    812
    913since result is a Python set(), not a dict()