-
Notifications
You must be signed in to change notification settings - Fork 34
What's New in Pythonect 0.5.0
ikotler edited this page Apr 24, 2013
·
2 revisions
Release date: 24-Apr-2013
-
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
>>>