~fenics-core/ufl/1.0.x

« back to all changes in this revision

Viewing changes to ufl/terminal.py

  • Committer: Martin Sandve Alnæs
  • Date: 2012-06-16 17:49:06 UTC
  • Revision ID: martinal@simula.no-20120616174906-sc3ziossqidbumk5
Finally make slots work properly with pydolfin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
#--- Subgroups of terminals ---
109
109
 
110
110
class FormArgument(Terminal):
111
 
    __slots__ = ("_count",)
 
111
    __slots__ = ()
112
112
    def __init__(self, count=None, countedclass=None):
113
113
        Terminal.__init__(self)
114
114
        counted_init(self, count, countedclass)