~storm/storm/trunk

« back to all changes in this revision

Viewing changes to storm/expr.py

  • Committer: Colin Watson
  • Date: 2019-08-12 14:57:51 UTC
  • mfrom: (510.4.1 py3-dict)
  • Revision ID: cjwatson@canonical.com-20190812145751-2v31bo9mofm0s0bb
Handle Python 3's changes to dict iteration methods. [r=doismellburning]

Show diffs side-by-side

added added

removed removed

Lines of Context:
744
744
    state.context = EXPR
745
745
    values = insert.values
746
746
    if values is Undef:
747
 
        values = [tuple(insert.map.itervalues())]
 
747
        values = [tuple(six.itervalues(insert.map))]
748
748
    if isinstance(values, Expr):
749
749
        compiled_values = compile(values, state)
750
750
    else: