1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-30 08:32:52 +08:00

Update for Python 3

This commit is contained in:
Alex Forencich 2015-04-01 19:43:54 -07:00
parent db6a6e23f5
commit 92830f87d8

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2 #!/usr/bin/env python
""" """
Copyright (c) 2015 Alex Forencich Copyright (c) 2015 Alex Forencich
@ -25,7 +25,11 @@ THE SOFTWARE.
from myhdl import * from myhdl import *
import os import os
from Queue import Queue
try:
from queue import Queue
except ImportError:
from Queue import Queue
import eth_ep import eth_ep
import arp_ep import arp_ep