Skip to content

Latest commit

 

History

History
38 lines (37 loc) · 1.65 KB

File metadata and controls

38 lines (37 loc) · 1.65 KB

Write Your Python Program - CHANGELOG

  • 0.11.0 (2021-03-11)
    • Breaking change: wypp is no longer automatically imported. You need an explicit import statement such as from wypp import *.
  • 0.10.X (2021-03-10)
    • Module name is now '__wypp__' when executed via RUN button.
    • Fix scoping bug
    • Hitting the RUN button now changes to the directory of the current file.
  • 0.9.1 (2020-12-07)
    • Fix equality for records.
  • 0.9.0 (2020-12-04)
    • Enable from __future__ import annotations for all code executed via the RUN button.
  • 0.8.2 (2020-12-01)
    • Raise an error if a field of an old-style record is mutated.
  • 0.8.1 (2020-11-24)
    • Fix command execution under windows and powershell
    • Allow List[T] if T is an Enum, Mixed or DefinedLater
    • Better formatting of tracebacks
  • 0.8.0 (2020-11-22)
    • Alternative form for records
    • Fix bug when importing local modules
  • 0.7.2 (2020-11-17)
    • Allow types such as List[int] in records and mixeds.
  • 0.7.1. (2020-11-13)
    • Better error message when used with python 2.
  • Version 0.7.0 (2020-11-13)
    • The path to the python interpreter is read from the configuration of the regular python extension (if not configured explicitly for wypp).
  • Version 0.6.0 (2020-11-12)
    • The python support files are now installed to the user site path. This allows imports such as from wypp import * for better integration with tools like the debugger.
  • Version 0.5.0 (2020-11-09)
    • better equality for floats contained in records and sequences.
  • Version 0.4.0 (2020-10-30)
    • automatically deactivate pylint
    • add support for drawing simple geometric shapes (import drawingLib.py to use them)