[sl4] either way

From: Eric Burton (brilanon@gmail.com)
Date: Sun Mar 04 2012 - 05:34:33 MST


I think I'd thought of a better subject and forgot but that one is
pretty funny, ok

(boxy-methoxy) /root/audio/toskanegger# python
Python 2.6.2 (r262:71600, Jun 9 2009, 14:36:10)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> os.system("echo hello world")
Traceback (most recent call last):
File "", line 1, in
NameError: name 'os' is not defined
>>> print os.__doc__
Traceback (most recent call last):
File "", line 1, in
NameError: name 'os' is not defined
>>> dir(os)
Traceback (most recent call last):
File "", line 1, in
NameError: name 'os' is not defined
>>> from os import system
>>> os.system("echo hello world")
Traceback (most recent call last):
File "", line 1, in
NameError: name 'os' is not defined
>>> from os import system
>>> from os import system



This archive was generated by hypermail 2.1.5 : Wed Jul 17 2013 - 04:01:06 MDT