Message237404
| Author |
Jeff Doak |
| Recipients |
Jeff Doak, demian.brecht, ned.deily, r.david.murray, ronaldoussoren |
| Date |
2015年03月07日.00:16:28 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1425687388.31.0.892897417832.issue23599@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I am in a standard Terminal session. I have a symbolic link for python 3.4:
/usr/bin/python -> /opt/local/bin/python3.4
so I can run python... or the following:
$ /opt/local/bin/python3.4 -c 'import sys;print(sys.version)'
3.4.2 (default, Oct 22 2014, 01:08:11)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.54)]
$ /opt/local/bin/python3.4 -c 'import readline;print(readline.__doc__)'
Importing this module enables command line editing using libedit readline. |
|