Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/nmigen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd00b5e2d677
Choose a base ref
...
head repository: m-labs/nmigen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 151d079f0144
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Dec 14, 2018

  1. fhdl.ir: oops, we defined DomainError twice.

    whitequark committed Dec 14, 2018
    Copy the full SHA
    151d079 View commit details
Showing with 2 additions and 5 deletions.
  1. +1 −5 nmigen/fhdl/ir.py
  2. +1 −0 nmigen/fhdl/xfrm.py
6 changes: 1 addition & 5 deletions nmigen/fhdl/ir.py
Original file line number Diff line number Diff line change
@@ -5,11 +5,7 @@
from .cd import *


__all__ = ["Fragment", "DomainError"]


class DomainError(Exception):
pass
__all__ = ["Fragment"]


class Fragment:
1 change: 1 addition & 0 deletions nmigen/fhdl/xfrm.py
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
from ..tools import flatten
from .ast import *
from .ast import _StatementList
from .cd import *
from .ir import *