Lines Matching full:converts
194 Converts :class:`basestring` to :class:`str`.
198 Converts :class:`buffer` to :class:`memoryview`. This fixer is optional
214 Converts ``except X, T`` to ``except X as T``.
218 Converts the :keyword:`exec` statement to the :func:`exec` function.
268 Detects sibling imports and converts them to relative imports.
281 Converts ``input(prompt)`` to ``eval(input(prompt))``.
285 Converts :func:`intern` to :func:`sys.intern`.
317 Converts the old metaclass syntax (``__metaclass__ = Meta`` in the class
327 Converts the old not-equal syntax, ``<>``, to ``!=``.
331 Converts the use of iterator's :meth:`~iterator.next` methods to the
341 Converts octal literals into the new syntax.
350 Converts the :keyword:`print` statement to the :func:`print` function.
354 Converts ``raise E, V`` to ``raise E(V)``, and ``raise E, V, T`` to ``raise
360 Converts :func:`raw_input` to :func:`input`.