source: mainline/uspace/dist/src/python/modules.py@ 95658c9

ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 95658c9 was 2034f98, checked in by Vojtech Horky <vojtechhorky@…>, 12 years ago

Add few Python demos

  • Property mode set to 100644
File size: 313 bytes
Line 
1#!/usr/bin/python
2
3import sys
4
5for m in sys.builtin_module_names:
6 print("Built-in module '%s'." % m)
7
8try:
9 import pkgutil
10 for (loader, name, ispkg) in pkgutil.iter_modules():
11 print("Loadable module '%s'." % name)
12except ImportError:
13 print("Cannot determine list of loadable modules (pkgutil not found)!")
14
15
Note: See TracBrowser for help on using the repository browser.