( key )
| 159 | item = ConvertCompletionDataToVimData( completion ) |
| 160 | |
| 161 | def matcher( key ): |
| 162 | return ( ToUnicode( completed_item.get( key, "" ) ) == |
| 163 | ToUnicode( item.get( key, "" ) ) ) |
| 164 | |
| 165 | if all( matcher( i ) for i in match_keys ): |
| 166 | matched_completions.append( completion.get( 'extra_data', {} ) ) |
no test coverage detected