Navigation Menu

Skip to content

What's New in Pythonect 0.5.0

ikotler edited this page Apr 24, 2013 · 2 revisions

What's New In Pythonect 0.5?

Release date: 24-Apr-2013

Core and builtins

  • Issue #71: Unable to run Pythonect in Script Mode

  • Issue #72: Can't Load Local Modules with '-m'

  • Issue #58: Install argparse if Python 2.6

  • Feature #70: Pythonect now supports Max Threads Limit (i.e. '-mt' command-line argument)

    $ /usr/local/bin/pythonect -mt 1 -c "'Hello, world' -> [print, print]"
    <MainProcess:Thread-5> : Hello, world
    <MainProcess:Thread-5> : Hello, world
AS OPPOSE TO:
    $ /usr/local/bin/pythonect -mt 2 -c "'Hello, world' -> [print, print]"
    <MainProcess:Thread-7> : Hello, world
    <MainProcess:Thread-6> : Hello, world
  • Feature #73: '_' is no longer implicit in the 1st call to eval()
    Python 2.7.3 (default, Aug  1 2012, 05:14:39) 
    [Pythonect 0.5.0] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 1
    1
    >>> print
    <MainProcess:MainThread> : None
    >>> 1
    1
    >>> _ -> print
    <MainProcess:MainThread> : 1
    1
    >>> 
AS OPPOSE TO:
    >>> 1
    1
    >>> print
    <MainProcess:MainThread> : 1
    >>> 1
    1
    >>> _ -> print
    <MainProcess:MainThread> : 1
    1
    >>>