Lines Matching full:converts
197 Converts :class:`basestring` to :class:`str`.
201 Converts :class:`buffer` to :class:`memoryview`. This fixer is optional
217 Converts ``except X, T`` to ``except X as T``.
221 Converts the ``exec`` statement to the :func:`exec` function.
271 Detects sibling imports and converts them to relative imports.
284 Converts ``input(prompt)`` to ``eval(input(prompt))``.
288 Converts :func:`intern` to :func:`sys.intern`.
321 Converts the old metaclass syntax (``__metaclass__ = Meta`` in the class
331 Converts the old not-equal syntax, ``<>``, to ``!=``.
335 Converts the use of iterator's :meth:`~iterator.next` methods to the
346 Converts octal literals into the new syntax.
350 Converts calls to various functions in the :mod:`operator` module to other,
374 Converts the ``print`` statement to the :func:`print` function.
378 Converts ``raise E, V`` to ``raise E(V)``, and ``raise E, V, T`` to ``raise
384 Converts :func:`raw_input` to :func:`input`.
392 Converts :func:`reload` to :func:`importlib.reload`.