Skip to content

What's New in Pythonect 0.4.1

ikotler edited this page Sep 3, 2012 · 1 revision

What's New In Pythonect 0.4.1?

Release date: 03-Sep-2012

Core and builtins

  • PEP8 Fixes
  • PEP 3110 Fixes
  • Added Travis CI Support
  • Issue #38: No docstrings for eval(), parse(), and Pythonect module
  • Issue #39: eval_test_gen.py fails due to incorrect import
  • Issue #41: Pythonect split() renamed to parse() to better fit it's purpose
  • Issue #42: Pythonect fails on Python implementations that do not include the multiprocessing module
  • Issue #44: Warnings during installation due to MANIFEST.in
  • Enhancement #45: Dict can now be used as a return value, only literal dict will be treated as switch.:

i.e.:

{'foobar': 'foobar'} -> print

AND:

def foobar(): return {'foobar': 'foobar'} -> foobar() -> print

Will print:

{'foobar': 'foobar'}

While:

1 -> {1: 'One', 2: 'Two'} -> print

Will print:

One
  • Issue #47: Pythonect parse() is not included in the testsuite

Build

  • Issue #43: Pythonect unittest runner is not cross-platform