[原创] Learning in Python:Chapter 2 How Python Runs Programs

 Chapter 2

 
1、Python runing sequence:
 

 
2. Different Python implementation:
  •     CPython:     original , C/C++
  •     Jython:                        Java 
  •     IronPython:               .Net, C#
 
3. Execution Optimization Tools
  • The Psyco just-in-time compiler
  • The Shedskin C++ translator
4. Frozen Binaries
  • py2exe (windows)
  • PyInstaller (linux, windows)
  • freeze
5. Other Execution Options
  • Stackless Python:   easier to port to small stack architectures, provides efficient multiprocessing options, and fosters novel programming structures such as coroutines
  • Cython system: hybrid language combined C
posted @ 2012-09-29 21:06  icemoon1987  阅读(165)  评论(0编辑  收藏  举报