Message167099
The Dev Guide should say the preferred way (or even a way) to run tests using the Python 2.7 build:
http://docs.python.org/devguide/runtests.html
This will help submitters who want to check that their patch works with 2.7.
In Python 2.7, this did not work (for obvious reasons):
$ ./python.exe -m test
.../python.exe: No module named test.__main__; 'test' is a package and cannot be directly executed
But this did:
$ ./python.exe -m test.regrtest
Is the latter the preferred way? |
|
Date |
User |
Action |
Args |
2012-08-01 09:07:48 | chris.jerdonek | set | recipients:
+ chris.jerdonek, ezio.melotti, docs@python |
2012-08-01 09:07:48 | chris.jerdonek | set | messageid: <1343812068.2.0.0173567393654.issue15521@psf.upfronthosting.co.za> |
2012-08-01 09:07:47 | chris.jerdonek | link | issue15521 messages |
2012-08-01 09:07:47 | chris.jerdonek | create | |
|