()
| 55 | |
| 56 | # Below are functions that should only be used internally |
| 57 | def _get_handle(): |
| 58 | global __handle |
| 59 | |
| 60 | if __handle is None: |
| 61 | raise Exception("splinter is not loaded!") |
| 62 | |
| 63 | return __handle |
| 64 | |
| 65 | |
| 66 | # Set expected argument types and return types of all functions |