Return the list of warnings. Non-critical problems found when parsing the PE file are appended to a list of warnings. This method returns the full list.
(self)
| 3269 | return result |
| 3270 | |
| 3271 | def get_warnings(self): |
| 3272 | """Return the list of warnings. |
| 3273 | |
| 3274 | Non-critical problems found when parsing the PE file are |
| 3275 | appended to a list of warnings. This method returns the |
| 3276 | full list. |
| 3277 | """ |
| 3278 | |
| 3279 | return self.__warnings |
| 3280 | |
| 3281 | def show_warnings(self): |
| 3282 | """Print the list of warnings. |
no outgoing calls
no test coverage detected