Skip to content

Commit

Permalink
Patch for "Not Implemented Error"
Browse files Browse the repository at this point in the history
Patch for "Not Implemented Error" for IDA 7.5 with Python 3 (3.8.2). 
Code from jupyter/notebook#4613
  • Loading branch information
cxm95 committed Jun 10, 2020
1 parent 36f96f1 commit f9cc1ab
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ipyida/ipyida_plugin_stub.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
# See LICENSE file for redistribution.
from __future__ import print_function

import sys
import asyncio


if sys.platform == 'win32' and sys.version_info > (3, 8, 0, 'alpha', 3):
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

try:
from ipyida.ida_plugin import PLUGIN_ENTRY, IPyIDAPlugIn
except ImportError:
Expand Down

0 comments on commit f9cc1ab

Please sign in to comment.