Closes #9574: Note that complex constructor doesn't allow whitespace around central operator.

This commit is contained in:
Mark Dickinson 2012-03-10 16:09:35 +00:00
parent e107ab3b6c
commit 5081957642
1 changed files with 7 additions and 0 deletions

View File

@ -247,6 +247,13 @@ available. They are listed here in alphabetical order.
the function serves as a numeric conversion function like :func:`int`,
:func:`long` and :func:`float`. If both arguments are omitted, returns ``0j``.
.. note::
When converting from a string, the string must not contain whitespace
around the central ``+`` or ``-`` operator. For example,
``complex('1+2j')`` is fine, but ``complex('1 + 2j')`` raises
:exc:`ValueError`.
The complex type is described in :ref:`typesnumeric`.