Changeset 480
- Timestamp:
- 12/01/07 19:54:26 (1 year ago)
- Files:
-
- shedskin/branches/distutils/scripts/shed (modified) (1 diff)
- shedskin/branches/distutils/shedskin/core.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
shedskin/branches/distutils/scripts/shed
r479 r480 1 1 #!/usr/bin/env python 2 2 3 import sys 3 4 from shedskin.core import main 4 5 5 main( )6 main(sys.argv[1:]) shedskin/branches/distutils/shedskin/core.py
r479 r480 6744 6744 # --- parse command-line options 6745 6745 try: 6746 opts, args = getopt.getopt(argv [1:], 'eibnf:', ['infinite', 'extmod', 'bounds', 'nowrap', 'flags='])6746 opts, args = getopt.getopt(argv, 'eibnf:', ['infinite', 'extmod', 'bounds', 'nowrap', 'flags=']) 6747 6747 except getopt.GetoptError: 6748 6748 usage()
