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 jimjjewett
Recipients
Date 2007-05-01.13:48:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Are you sure it works the same?  I would expect that 

(1)  The longer form first finds a module (or package) named scipy, then finds the (sub-)module stats within it.  The shortcut form might not provide enough of the scipy context.  (Whether this actually matters probably depends on what stats does, how much it depends on the rest of scipy, and what you need it for.)

(2)  The longer form would work using python abstractions, while the short form would depend on how files happened to be stored on your machine.  Your storage format is fairly common, but not guaranteed.  For example, would the short form work on windows, where directory slashes (sometimes) need to go the other direction?  Would it work if scipy were in a zipfile egg?
History
Date User Action Args
2007-08-23 14:53:28adminlinkissue1708326 messages
2007-08-23 14:53:28admincreate