Skip to content

Instantly share code, notes, and snippets.

@ajayk
Created September 9, 2011 08:52
Show Gist options
  • Save ajayk/1205793 to your computer and use it in GitHub Desktop.
Save ajayk/1205793 to your computer and use it in GitHub Desktop.
Python version
C:\Documents and Settings\ajk>python -v
# installing zipimport hook
import zipimport # builtin
# installed zipimport hook
# c:\python26\lib\site.pyc matches c:\python26\lib\site.py
import site # precompiled from c:\python26\lib\site.pyc
# c:\python26\lib\os.pyc matches c:\python26\lib\os.py
import os # precompiled from c:\python26\lib\os.pyc
import errno # builtin
import nt # builtin
# c:\python26\lib\ntpath.pyc matches c:\python26\lib\ntpath.py
import ntpath # precompiled from c:\python26\lib\ntpath.pyc
# c:\python26\lib\stat.pyc matches c:\python26\lib\stat.py
import stat # precompiled from c:\python26\lib\stat.pyc
# c:\python26\lib\genericpath.pyc matches c:\python26\lib\genericpath.py
import genericpath # precompiled from c:\python26\lib\genericpath.pyc
# c:\python26\lib\warnings.pyc matches c:\python26\lib\warnings.py
import warnings # precompiled from c:\python26\lib\warnings.pyc
# c:\python26\lib\linecache.pyc matches c:\python26\lib\linecache.py
import linecache # precompiled from c:\python26\lib\linecache.pyc
# c:\python26\lib\types.pyc matches c:\python26\lib\types.py
import types # precompiled from c:\python26\lib\types.pyc
# c:\python26\lib\UserDict.pyc matches c:\python26\lib\UserDict.py
import UserDict # precompiled from c:\python26\lib\UserDict.pyc
# c:\python26\lib\_abcoll.pyc matches c:\python26\lib\_abcoll.py
import _abcoll # precompiled from c:\python26\lib\_abcoll.pyc
# c:\python26\lib\abc.pyc matches c:\python26\lib\abc.py
import abc # precompiled from c:\python26\lib\abc.pyc
# c:\python26\lib\copy_reg.pyc matches c:\python26\lib\copy_reg.py
import copy_reg # precompiled from c:\python26\lib\copy_reg.pyc
# c:\python26\lib\locale.pyc matches c:\python26\lib\locale.py
import locale # precompiled from c:\python26\lib\locale.pyc
import encodings # directory c:\python26\lib\encodings
# c:\python26\lib\encodings\__init__.pyc matches c:\python26\lib\encodings\__ini
t__.py
import encodings # precompiled from c:\python26\lib\encodings\__init__.pyc
# c:\python26\lib\codecs.pyc matches c:\python26\lib\codecs.py
import codecs # precompiled from c:\python26\lib\codecs.pyc
import _codecs # builtin
# c:\python26\lib\encodings\aliases.pyc matches c:\python26\lib\encodings\aliase
s.py
import encodings.aliases # precompiled from c:\python26\lib\encodings\aliases.py
c
# c:\python26\lib\functools.pyc matches c:\python26\lib\functools.py
import functools # precompiled from c:\python26\lib\functools.pyc
import _functools # builtin
import _locale # builtin
# c:\python26\lib\re.pyc matches c:\python26\lib\re.py
import re # precompiled from c:\python26\lib\re.pyc
# c:\python26\lib\sre_compile.pyc matches c:\python26\lib\sre_compile.py
import sre_compile # precompiled from c:\python26\lib\sre_compile.pyc
import _sre # builtin
# c:\python26\lib\sre_parse.pyc matches c:\python26\lib\sre_parse.py
import sre_parse # precompiled from c:\python26\lib\sre_parse.pyc
# c:\python26\lib\sre_constants.pyc matches c:\python26\lib\sre_constants.py
import sre_constants # precompiled from c:\python26\lib\sre_constants.pyc
import operator # builtin
# c:\python26\lib\encodings\cp1252.pyc matches c:\python26\lib\encodings\cp1252.
py
import encodings.cp1252 # precompiled from c:\python26\lib\encodings\cp1252.pyc
Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment