281 # not Ruby source, can't do anything with this module |
281 # not Ruby source, can't do anything with this module |
282 return {} |
282 return {} |
283 |
283 |
284 try: |
284 try: |
285 src = Utilities.readEncodedFile(file)[0] |
285 src = Utilities.readEncodedFile(file)[0] |
286 except (UnicodeError, OSError): |
286 except (OSError, UnicodeError): |
287 # can't do anything with this module |
287 # can't do anything with this module |
288 return {} |
288 return {} |
289 |
289 |
290 return scan(src, file, module) |
290 return scan(src, file, module) |
291 |
291 |