diff options
author | Paul Ivanov <paul.ivanov@local> | 2009-12-28 20:49:52 +0000 |
---|---|---|
committer | Paul Ivanov <paul.ivanov@local> | 2009-12-28 20:49:52 +0000 |
commit | e4f233ecfedd2aafa258db2d3ae27e30604cc020 (patch) | |
tree | 6d32fbdd19b8dca00cd7cafd8df076bac55ddfd8 /numpy/lib/utils.py | |
parent | 5ba01996a9ab2fdfb7c120a5afae801f854a781a (diff) | |
download | numpy-e4f233ecfedd2aafa258db2d3ae27e30604cc020.tar.gz |
fixed a whole bunch of doctests
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 43d6ede1f..3e73c2a0f 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -344,7 +344,7 @@ def who(vardict=None): >>> d = {'x': np.arange(2.0), 'y': np.arange(3.0), 'txt': 'Some str', ... 'idx':5} - >>> np.whos(d) + >>> np.who(d) Name Shape Bytes Type =========================================================== y 3 24 float64 @@ -666,7 +666,7 @@ def source(object, output=sys.stdout): Examples -------- - >>> np.source(np.interp) + >>> np.source(np.interp) #doctest: +SKIP In file: /usr/lib/python2.6/dist-packages/numpy/lib/function_base.py def interp(x, xp, fp, left=None, right=None): \"\"\".... (full docstring printed)\"\"\" @@ -677,7 +677,7 @@ def source(object, output=sys.stdout): The source code is only returned for objects written in Python. - >>> np.source(np.array) + >>> np.source(np.array) #doctest: +SKIP Not available for this object. """ @@ -737,6 +737,8 @@ def lookfor(what, module=None, import_modules=True, regenerate=False, ------------------------------------------ numpy.binary_repr Return the binary representation of the input number as a string. + numpy.core.setup_common.long_double_representation + Given a binary dump as given by GNU od -b, look for long double numpy.base_repr Return a string representation of a number in the given base system. ... @@ -1066,7 +1068,7 @@ def safe_eval(source): ... SyntaxError: invalid syntax - >>> safe_eval('open("/home/user/.ssh/id_dsa").read()') + >>> np.safe_eval('open("/home/user/.ssh/id_dsa").read()') Traceback (most recent call last): ... SyntaxError: Unsupported source construct: compiler.ast.CallFunc |