Edgewall Software

Changeset 1104 for trunk


Ignore:
Timestamp:
Apr 16, 2010, 10:37:13 AM (13 years ago)
Author:
cmlenz
Message:

AST transformer now also clones excepthandler nodes (see #379).

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r1100 r1104  
    99 * Updated the Python AST processing for template code evaluation to use the
    1010   `_ast` module instead of the deprecated `compiler` package, including an
    11    adapter layer for Python 2.4, and some workarounds to enable compatibility
    12    with Google App Engine. This, too, is the result of integrating work done
    13    by  Marcin Kurczych during GSoC 2008.
     11   adapter layer for Python 2.4. This, too, is the result of integrating work
     12   done by  Marcin Kurczych during GSoC 2008.
    1413 * Added caching in the serialization stage for improved performance.
    1514 * Various improvements to the HTML sanitization filter.
  • trunk/genshi/template/astutil.py

    r1102 r1104  
    743743    visit_TryFinally = _clone
    744744    visit_Assert = _clone
     745    visit_ExceptHandler = _clone
    745746
    746747    visit_Import = _clone
Note: See TracChangeset for help on using the changeset viewer.