Skip to content

Commit

Permalink
first set of checkins from the doc editor
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Nov 13, 2009
1 parent 3122ee5 commit f07c79d
Show file tree
Hide file tree
Showing 21 changed files with 1,359 additions and 385 deletions.
11 changes: 7 additions & 4 deletions numpy/compat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
"""Compatibility module.
"""
Compatibility module.
This module contains duplicated code from python itself or 3rd party
This module contains duplicated code from Python itself or 3rd party
extensions, which may be included for the following reasons:
- compatibility
- we may only need a small subset of the copied library/module
* compatibility
* we may only need a small subset of the copied library/module
"""
import _inspect
from _inspect import getargspec, formatargspec
Expand Down
8 changes: 4 additions & 4 deletions numpy/core/arrayprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def get_printoptions():
- edgeitems : int
- linewidth : int
- suppress : bool
- nanstr : string
- infstr : string
- nanstr : str
- infstr : str
For a full description of these options, see `set_printoptions`.
Expand Down Expand Up @@ -253,9 +253,9 @@ def array2string(a, max_line_width = None, precision = None,
suppress_small : bool, optional
Represent very small numbers as zero. A number is "very small" if it
is smaller than the current printing precision.
separator : string, optional
separator : str, optional
Inserted between elements.
prefix : string, optional
prefix : str, optional
An array is typically printed as::
'prefix(' + array2string(a) + ')'
Expand Down
Loading

0 comments on commit f07c79d

Please sign in to comment.