Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
b8e17f73
Kaydet (Commit)
b8e17f73
authored
Şub 08, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
a few edits and typos
üst
10fe877d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
2to3.rst
Doc/library/2to3.rst
+11
-10
No files found.
Doc/library/2to3.rst
Dosyayı görüntüle @
b8e17f73
...
...
@@ -146,7 +146,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: filter
Wraps :func:`filter` in a :class:`list` call.
Wraps :func:`filter`
usage
in a :class:`list` call.
.. 2to3fixer:: funcattrs
...
...
@@ -190,8 +190,8 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: imports2
Handles other modules re
an
mes in the standard library. It is separate from
:2to3fixer:`imports`
only because of technical limitations.
Handles other modules re
na
mes in the standard library. It is separate from
the :2to3fixer:`imports` fixer
only because of technical limitations.
.. 2to3fixer:: input
...
...
@@ -199,7 +199,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: intern
Converts :func:`intern` to :func:`sys.itern`.
Converts :func:`intern` to :func:`sys.i
n
tern`.
.. 2to3fixer:: isinstance
...
...
@@ -221,11 +221,12 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: long
Strips the ``L`` prefix on numbers and renamed :class:`long` to :class:`int`.
Strips the ``L`` prefix on long literals and renames :class:`long` to
:class:`int`.
.. 2to3fixer:: map
Wraps :func:`map` in a :class:`list` call. It also changes ``map(
n
one, x)``
Wraps :func:`map` in a :class:`list` call. It also changes ``map(
N
one, x)``
to ``list(x)``. Using ``from future_builtins import map`` disables this
fixer.
...
...
@@ -259,7 +260,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: paren
Add extra parenthesis where they are required in list comprehensions. For
example, ``[x for x in 1, 2]``
to
``[x for x in (1, 2)]``.
example, ``[x for x in 1, 2]``
becomes
``[x for x in (1, 2)]``.
.. 2to3fixer:: print
...
...
@@ -267,7 +268,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: raises
Converts ``raise E, V`` to ``raise E(V)``, and ``raise E, V, T``
as
``raise
Converts ``raise E, V`` to ``raise E(V)``, and ``raise E, V, T``
to
``raise
E(V).with_traceback(T)``. If ``E`` is a tuple, the translation will be
incorrect because substituting tuples for exceptions has been removed in 3.0.
...
...
@@ -303,7 +304,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: throw
Fixes the API change in generators :meth:`throw` method.
Fixes the API change in generator
'
s :meth:`throw` method.
.. 2to3fixer:: tuple_params
...
...
@@ -336,7 +337,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: xreadlines
Change ``for x in file.xreadlines()`` to ``for x in file``.
Change
s
``for x in file.xreadlines()`` to ``for x in file``.
.. 2to3fixer:: zip
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment