LINUX.ORG.RU

История изменений

Исправление ados, (текущая версия) :

$ python3
Python 3.7.0 (default, Jul 15 2018, 10:44:58) 
[GCC 8.1.1 20180531] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x = 1
>>> x+1
2
>>> _
2
>>> x+8
9
>>> _
9
>>>  

Исходная версия ados, :

$ ipython3
Python 3.7.0 (default, Jul 15 2018, 10:44:58) 
Type 'copyright', 'credits' or 'license' for more information
IPython 6.5.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: x = 1

In [2]: x+1
Out[2]: 2

In [3]: _
Out[3]: 2

In [4]: