Commit ca3cde6a authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

use math.gcd instead of deprecated fractions.gcd

parent 29e23a7c
...@@ -28,7 +28,7 @@ written in Python. ...@@ -28,7 +28,7 @@ written in Python.
See the doc/ folder for more technical information. See the doc/ folder for more technical information.
Migen is designed for Python 3.3. Note that Migen is **not** spelled MiGen. Migen is designed for Python 3.5. Note that Migen is **not** spelled MiGen.
#### Quick Links #### Quick Links
......
from fractions import gcd from math import gcd
import collections import collections
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment