Edgewall Software

Changes between Initial Version and Version 3 of Ticket #612


Ignore:
Timestamp:
Nov 1, 2018, 6:32:28 PM (5 years ago)
Author:
rjollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #612 – Description

    initial v3  
    1 Python 3.8 now uses ast.Constant type and remove types like _ast.Str: ast.Str is a backward compatibility class.
     1Python 3.8 now uses ast.Constant type and remove types like `_ast.Str`: `ast.Str` is a backward compatibility class.
    22
    33I had to disable Genshi benchmark in the performance project:
    44https://github.com/python/performance/issues/46
    55
    6 Example of issue: "strarg = _new(_ast.Str, node.id)" at genshi/template/eval.py:616: the code should use ast.Str, not _ast.Str.
     6Example of issue: `strarg = _new(_ast.Str, node.id)` at genshi/template/eval.py:616: the code should use `ast.Str`, not `_ast.Str`.