Re: [PATCH 5/8] Don't doctest files, that cannot be imported

2008-12-10 Thread Ondrej Certik
On Tue, Dec 9, 2008 at 8:21 PM, Andy Ray Terrel <[EMAIL PROTECTED]> wrote: > > On Tue, Dec 9, 2008 at 10:31 AM, Ondrej Certik <[EMAIL PROTECTED]> wrote: >> >> This is achieved by looking for the __init__.py file and if it's missing, it >> means that such file cannot be imported in python using the

Re: [PATCH 5/8] Don't doctest files, that cannot be imported

2008-12-09 Thread Andy Ray Terrel
On Tue, Dec 9, 2008 at 10:31 AM, Ondrej Certik <[EMAIL PROTECTED]> wrote: > > This is achieved by looking for the __init__.py file and if it's missing, it > means that such file cannot be imported in python using the "import something" > syntax (for example all tests in sympy are such a case). > -

[PATCH 5/8] Don't doctest files, that cannot be imported

2008-12-09 Thread Ondrej Certik
This is achieved by looking for the __init__.py file and if it's missing, it means that such file cannot be imported in python using the "import something" syntax (for example all tests in sympy are such a case). --- sympy/utilities/runtests.py | 15 +++ 1 files changed, 15 insertio