Edgewall Software

Changes between Initial Version and Version 1 of Ticket #602, comment 2


Ignore:
Timestamp:
Mar 25, 2017, 12:34:14 AM (7 years ago)
Author:
rjollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #602, comment 2

    initial v1  
    1 I had to make one change to t602.diff.  Since in Ubuntu we build versions for Python 2.7, 3.4, and 3.5 (currently), you first have to check if _ast.Starred exists, which it doesn't for Python 2.7.  Thus:
     1I had to make one change to t602.diff.  Since in Ubuntu we build versions for Python 2.7, 3.4, and 3.5 (currently), you first have to check if `_ast.Starred` exists, which it doesn't for Python 2.7.  Thus:
    22
     3{{{#!python
    34                if hasattr(_ast, 'Starred') and isinstance(arg, _ast.Starred):
    45                    # Python 3.5+
     
    78                    # only names
    89                    self.args.append(arg.id)
     10}}}
    911
    1012What's the status of getting a new version of Genshi released with this fix?