- All doctests in NumPy will have the numpy module available in their execution context as "np".
- The normalized whitespace option is enabled for all doctests.
- Adding "#random" to expected output will now cause that output to be ignored, but the associated example command will still be executed. So you can now do this to provide a descriptive example but not have it fail:
>>> random.random()
0.1234567890 #random: output may differ on your system
By the way, many thanks to whomever installed nose on the NumPy buildbots! :)