Message103612
Also note that the test_support module is for some reason documented here: http://docs.python.org/library/test.html#module-test.test_support
This means that there are probably developers out there that are already using these functions even if some of them are not intended/designed to be used outside the Python test suite.
This situation is sub-optimal for two reasons:
1) test_support can't evolve quickly because the documented functions have to be backward-compatible;
2) other developers are using these python-test-suite-specific functions in their tests;
It would be better to keep test_support for our test suite only and provide/move useful function in unittest. |
|
| Date |
User |
Action |
Args |
| 2010-04-19 16:07:32 | ezio.melotti | set | recipients:
+ ezio.melotti, brett.cannon, georg.brandl, rhettinger, tim.golden, tarek, r.david.murray, michael.foord, flox |
| 2010-04-19 16:07:32 | ezio.melotti | set | messageid: <[email protected]> |
| 2010-04-19 16:07:30 | ezio.melotti | link | issue8273 messages |
| 2010-04-19 16:07:30 | ezio.melotti | create | |
|