Changes between Initial Version and Version 1 of Ticket #45310, comment 13
- Timestamp:
- Nov 15, 2018, 3:13:58 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45310, comment 13
initial v1 1 1 I had the exact same problem with py34-pyobjc and py34-pyobjc-cocoa. My fix was to replace: 2 2 3 {{{ 3 4 result[fn] = 1 5 }}} 4 6 5 7 with 6 8 9 {{{ 7 10 result.add(fn) 11 }}} 8 12 9 13 since result is a Python set(), not a dict()