This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark.dickinson
Recipients Sworddragon, eric.araujo, mark.dickinson
Date 2010-06-12.20:49:35
SpamBayes Score 0.0017819778
Marked as misclassified No
Message-id <1276375777.13.0.856032206263.issue8984@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm.  I don't see any difference between the two here (OS X 10.6).  What platform are you on, and where did your copy of Python 3.1.2 come from?

newton:~ dickinsm$ cat test.py
import sys
print(sys.argv[1])
newton:~ dickinsm$ python3.1 test.py 1234
1234
newton:~ dickinsm$ python2.6 test.py 1234
1234
newton:~ dickinsm$ python3.1
Python 3.1.2 (r312:79147, May 18 2010, 17:21:15) 
[GCC 4.2.1 (Apple Inc. build 5659)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 
newton:~ dickinsm$ python2.6
Python 2.6.5 (r265:79063, May 18 2010, 17:12:15) 
[GCC 4.2.1 (Apple Inc. build 5659)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
History
Date User Action Args
2010-06-12 20:49:37mark.dickinsonsetrecipients: + mark.dickinson, eric.araujo, Sworddragon
2010-06-12 20:49:37mark.dickinsonsetmessageid: <1276375777.13.0.856032206263.issue8984@psf.upfronthosting.co.za>
2010-06-12 20:49:36mark.dickinsonlinkissue8984 messages
2010-06-12 20:49:35mark.dickinsoncreate