Skip to content

Commit

Permalink
compiler.types: fix TFunction internal field order (closes #208).
Browse files Browse the repository at this point in the history
whitequark committed Dec 26, 2015
1 parent a871194 commit 82ec76a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/compiler/types.py
Original file line number Diff line number Diff line change
@@ -234,8 +234,8 @@ class TFunction(Type):
"""

attributes = OrderedDict([
('__code__', _TPointer()),
('__closure__', _TPointer()),
('__code__', _TPointer()),
])

def __init__(self, args, optargs, ret):

0 comments on commit 82ec76a

Please sign in to comment.