ia64/xen-unstable
view tools/python/logging/setup.py @ 3887:4385894c52ae
bitkeeper revision 1.1230.2.4 (421a95cepOZORm0EbZfqBeZ6PZ8MwA)
Merge freefall.cl.cam.ac.uk:/auto/groups/xeno/users/cl349/BK/xen-unstable.bk
into freefall.cl.cam.ac.uk:/auto/groups/xeno-xenod/BK/xen-unstable.bk
Merge freefall.cl.cam.ac.uk:/auto/groups/xeno/users/cl349/BK/xen-unstable.bk
into freefall.cl.cam.ac.uk:/auto/groups/xeno-xenod/BK/xen-unstable.bk
author | iap10@freefall.cl.cam.ac.uk |
---|---|
date | Tue Feb 22 02:15:42 2005 +0000 (2005-02-22) |
parents | dae98734f12e |
children |
line source
1 #============================================================================
2 # Install the logging package from python 2.3 if not present.
3 #============================================================================
4 import os
6 try:
7 import logging
8 except ImportError:
9 print 'logging package not found: installing'
10 os.chdir('logging-0.4.9.2')
11 execfile('setup.py')