projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84966af
)
flow/actor: Record.connect no longer takes kwargs
author
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Sat, 2 Nov 2013 22:14:32 +0000
(23:14 +0100)
committer
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Sat, 2 Nov 2013 22:14:32 +0000
(23:14 +0100)
migen/flow/actor.py
patch
|
blob
|
history
diff --git
a/migen/flow/actor.py
b/migen/flow/actor.py
index 279182e7f744a69918263f63799a1d50f12515dc..a8388e20d11b66810e3e23e3a91267c5d57cb716 100644
(file)
--- a/
migen/flow/actor.py
+++ b/
migen/flow/actor.py
@@
-22,12
+22,12
@@
class _Endpoint(Record):
Record.__init__(self, full_layout)
class Source(_Endpoint):
- def connect(self, sink
, **kwargs
):
- return Record.connect(self, sink
, **kwargs
)
+ def connect(self, sink):
+ return Record.connect(self, sink)
class Sink(_Endpoint):
- def connect(self, source
, **kwargs
):
- return source.connect(self
, **kwargs
)
+ def connect(self, source):
+ return source.connect(self)
def get_endpoints(obj, filt=_Endpoint):
if hasattr(obj, "get_endpoints") and callable(obj.get_endpoints):