[code.view]

[top] / python / PyMOTW / platform / platform_python.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     import platform
     
     print 'Version      :', platform.python_version()
     print 'Version tuple:', platform.python_version_tuple()
     print 'Compiler     :', platform.python_compiler()
     print 'Build        :', platform.python_build()
     

[top] / python / PyMOTW / platform / platform_python.py

contact | logmethods.com