Changeset 479
- Timestamp:
- 12/01/07 19:52:33 (1 year ago)
- Files:
-
- shedskin/branches/distutils/scripts/shed (moved) (moved from shedskin/branches/distutils/scripts/shedskin) (1 diff)
- shedskin/branches/distutils/setup.py (modified) (1 diff)
- shedskin/branches/distutils/shedskin/core.py (copied) (copied from shedskin/branches/distutils/shedskin/__init__.py) (2 diffs)
- shedskin/branches/distutils/shedskin/__init__.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
shedskin/branches/distutils/scripts/shed
r478 r479 1 1 #!/usr/bin/env python 2 2 3 import shedskin3 from shedskin.core import main 4 4 5 shedskin.main()5 main() shedskin/branches/distutils/setup.py
r478 r479 13 13 'into optimized C++.', 14 14 license='GPL3', 15 scripts=['scripts/shed skin'],15 scripts=['scripts/shed'], 16 16 packages=['shedskin'], 17 17 package_data={'shedskin': ['lib/*.*', 'lib/os/*.*']}, shedskin/branches/distutils/shedskin/core.py
r478 r479 6733 6733 sys.exit() 6734 6734 6735 def main( ):6735 def main(argv): 6736 6736 global gx 6737 6737 gx = globalInfo() … … 6744 6744 # --- parse command-line options 6745 6745 try: 6746 opts, args = getopt.getopt( sys.argv[1:], 'eibnf:', ['infinite', 'extmod', 'bounds', 'nowrap', 'flags='])6746 opts, args = getopt.getopt(argv[1:], 'eibnf:', ['infinite', 'extmod', 'bounds', 'nowrap', 'flags=']) 6747 6747 except getopt.GetoptError: 6748 6748 usage()
