1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| C:\Documents and Settings\Administrateur\Bureau\Dossiers\Python>C:\Python25\python.exe -v
# installing zipimport hook
import zipimport # builtin
# installed zipimport hook
# C:\Python25\lib\site.pyc matches C:\Python25\lib\site.py
import site # precompiled from C:\Python25\lib\site.pyc
# C:\Python25\lib\os.pyc matches C:\Python25\lib\os.py
import os # precompiled from C:\Python25\lib\os.pyc
import nt # builtin
# C:\Python25\lib\ntpath.pyc matches C:\Python25\lib\ntpath.py
import ntpath # precompiled from C:\Python25\lib\ntpath.pyc
# C:\Python25\lib\stat.pyc matches C:\Python25\lib\stat.py
import stat # precompiled from C:\Python25\lib\stat.pyc
# C:\Python25\lib\UserDict.pyc matches C:\Python25\lib\UserDict.py
import UserDict # precompiled from C:\Python25\lib\UserDict.pyc
# C:\Python25\lib\copy_reg.pyc matches C:\Python25\lib\copy_reg.py
import copy_reg # precompiled from C:\Python25\lib\copy_reg.pyc
# C:\Python25\lib\types.pyc matches C:\Python25\lib\types.py
import types # precompiled from C:\Python25\lib\types.pyc
import _types # builtin
# C:\Python25\lib\locale.pyc matches C:\Python25\lib\locale.py
import locale # precompiled from C:\Python25\lib\locale.pyc
import encodings # directory C:\Python25\lib\encodings
# C:\Python25\lib\encodings\__init__.pyc matches C:\Python25\lib\encodings\__ini
t__.py
import encodings # precompiled from C:\Python25\lib\encodings\__init__.pyc
# C:\Python25\lib\codecs.pyc matches C:\Python25\lib\codecs.py
import codecs # precompiled from C:\Python25\lib\codecs.pyc
import _codecs # builtin
# C:\Python25\lib\encodings\aliases.pyc matches C:\Python25\lib\encodings\aliase
s.py
import encodings.aliases # precompiled from C:\Python25\lib\encodings\aliases.py
c
import _locale # builtin
# C:\Python25\lib\re.pyc matches C:\Python25\lib\re.py
import re # precompiled from C:\Python25\lib\re.pyc
# C:\Python25\lib\sre_compile.pyc matches C:\Python25\lib\sre_compile.py
import sre_compile # precompiled from C:\Python25\lib\sre_compile.pyc
import _sre # builtin
'import site' failed; traceback:
Traceback (most recent call last):
File "C:\Python25\lib\site.py", line 415, in <module>
main()
File "C:\Python25\lib\site.py", line 406, in main
aliasmbcs()
File "C:\Python25\lib\site.py", line 356, in aliasmbcs
import locale, codecs
File "C:\Python25\lib\locale.py", line 165, in <module>
import re, operator
File "C:\Python25\lib\re.py", line 97, in <module>
import sre_compile
File "C:\Python25\lib\sre_compile.py", line 15, in <module>
from sre_constants import *
ImportError: No module named sre_constants
# C:\Python25\lib\warnings.pyc matches C:\Python25\lib\warnings.py
import warnings # precompiled from C:\Python25\lib\warnings.pyc
# C:\Python25\lib\linecache.pyc matches C:\Python25\lib\linecache.py
import linecache # precompiled from C:\Python25\lib\linecache.pyc
Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> |
Partager